#region Copyright notice and license
// Copyright 2015 gRPC authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#endregion
using Grpc.Core.Utils;
namespace Grpc.Core
{
///
/// Represents RPC result, which consists of and an optional detail string.
///
public struct Status
{
///
/// Default result of a successful RPC. StatusCode=OK, empty details message.
///
public static readonly Status DefaultSuccess = new Status(StatusCode.OK, "");
///
/// Default result of a cancelled RPC. StatusCode=Cancelled, empty details message.
///
public static readonly Status DefaultCancelled = new Status(StatusCode.Cancelled, "");
readonly StatusCode statusCode;
readonly string detail;
///
/// Creates a new instance of Status.
///
/// Status code.
/// Detail.
public Status(StatusCode statusCode, string detail)
{
this.statusCode = statusCode;
this.detail = detail;
}
///
/// Gets the gRPC status code. OK indicates success, all other values indicate an error.
///
public StatusCode StatusCode
{
get
{
return statusCode;
}
}
///
/// Gets the detail.
///
public string Detail
{
get
{
return detail;
}
}
///
/// Returns a that represents the current .
///
public override string ToString()
{
return string.Format("Status(StatusCode={0}, Detail=\"{1}\")", statusCode, detail);
}
}
}