| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497 | // Generated by the protocol buffer compiler.  DO NOT EDIT!// source: src/proto/grpc/testing/metrics.proto#pragma warning disable 1591, 0612, 3021#region Designer generated codeusing pb = global::Google.Protobuf;using pbc = global::Google.Protobuf.Collections;using pbr = global::Google.Protobuf.Reflection;using scg = global::System.Collections.Generic;namespace Grpc.Testing {  /// <summary>Holder for reflection information generated from src/proto/grpc/testing/metrics.proto</summary>  public static partial class MetricsReflection {    #region Descriptor    /// <summary>File descriptor for src/proto/grpc/testing/metrics.proto</summary>    public static pbr::FileDescriptor Descriptor {      get { return descriptor; }    }    private static pbr::FileDescriptor descriptor;    static MetricsReflection() {      byte[] descriptorData = global::System.Convert.FromBase64String(          string.Concat(            "CiRzcmMvcHJvdG8vZ3JwYy90ZXN0aW5nL21ldHJpY3MucHJvdG8SDGdycGMu",            "dGVzdGluZyJsCg1HYXVnZVJlc3BvbnNlEgwKBG5hbWUYASABKAkSFAoKbG9u",            "Z192YWx1ZRgCIAEoA0gAEhYKDGRvdWJsZV92YWx1ZRgDIAEoAUgAEhYKDHN0",            "cmluZ192YWx1ZRgEIAEoCUgAQgcKBXZhbHVlIhwKDEdhdWdlUmVxdWVzdBIM",            "CgRuYW1lGAEgASgJIg4KDEVtcHR5TWVzc2FnZTKgAQoOTWV0cmljc1NlcnZp",            "Y2USSQoMR2V0QWxsR2F1Z2VzEhouZ3JwYy50ZXN0aW5nLkVtcHR5TWVzc2Fn",            "ZRobLmdycGMudGVzdGluZy5HYXVnZVJlc3BvbnNlMAESQwoIR2V0R2F1Z2US",            "Gi5ncnBjLnRlc3RpbmcuR2F1Z2VSZXF1ZXN0GhsuZ3JwYy50ZXN0aW5nLkdh",            "dWdlUmVzcG9uc2ViBnByb3RvMw=="));      descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,          new pbr::FileDescriptor[] { },          new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] {            new pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Testing.GaugeResponse), global::Grpc.Testing.GaugeResponse.Parser, new[]{ "Name", "LongValue", "DoubleValue", "StringValue" }, new[]{ "Value" }, null, null),            new pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Testing.GaugeRequest), global::Grpc.Testing.GaugeRequest.Parser, new[]{ "Name" }, null, null, null),            new pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Testing.EmptyMessage), global::Grpc.Testing.EmptyMessage.Parser, null, null, null, null)          }));    }    #endregion  }  #region Messages  /// <summary>  /// Reponse message containing the gauge name and value  /// </summary>  public sealed partial class GaugeResponse : pb::IMessage<GaugeResponse> {    private static readonly pb::MessageParser<GaugeResponse> _parser = new pb::MessageParser<GaugeResponse>(() => new GaugeResponse());    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public static pb::MessageParser<GaugeResponse> Parser { get { return _parser; } }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public static pbr::MessageDescriptor Descriptor {      get { return global::Grpc.Testing.MetricsReflection.Descriptor.MessageTypes[0]; }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    pbr::MessageDescriptor pb::IMessage.Descriptor {      get { return Descriptor; }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public GaugeResponse() {      OnConstruction();    }    partial void OnConstruction();    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public GaugeResponse(GaugeResponse other) : this() {      name_ = other.name_;      switch (other.ValueCase) {        case ValueOneofCase.LongValue:          LongValue = other.LongValue;          break;        case ValueOneofCase.DoubleValue:          DoubleValue = other.DoubleValue;          break;        case ValueOneofCase.StringValue:          StringValue = other.StringValue;          break;      }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public GaugeResponse Clone() {      return new GaugeResponse(this);    }    /// <summary>Field number for the "name" field.</summary>    public const int NameFieldNumber = 1;    private string name_ = "";    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public string Name {      get { return name_; }      set {        name_ = pb::ProtoPreconditions.CheckNotNull(value, "value");      }    }    /// <summary>Field number for the "long_value" field.</summary>    public const int LongValueFieldNumber = 2;    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public long LongValue {      get { return valueCase_ == ValueOneofCase.LongValue ? (long) value_ : 0L; }      set {        value_ = value;        valueCase_ = ValueOneofCase.LongValue;      }    }    /// <summary>Field number for the "double_value" field.</summary>    public const int DoubleValueFieldNumber = 3;    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public double DoubleValue {      get { return valueCase_ == ValueOneofCase.DoubleValue ? (double) value_ : 0D; }      set {        value_ = value;        valueCase_ = ValueOneofCase.DoubleValue;      }    }    /// <summary>Field number for the "string_value" field.</summary>    public const int StringValueFieldNumber = 4;    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public string StringValue {      get { return valueCase_ == ValueOneofCase.StringValue ? (string) value_ : ""; }      set {        value_ = pb::ProtoPreconditions.CheckNotNull(value, "value");        valueCase_ = ValueOneofCase.StringValue;      }    }    private object value_;    /// <summary>Enum of possible cases for the "value" oneof.</summary>    public enum ValueOneofCase {      None = 0,      LongValue = 2,      DoubleValue = 3,      StringValue = 4,    }    private ValueOneofCase valueCase_ = ValueOneofCase.None;    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public ValueOneofCase ValueCase {      get { return valueCase_; }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public void ClearValue() {      valueCase_ = ValueOneofCase.None;      value_ = null;    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public override bool Equals(object other) {      return Equals(other as GaugeResponse);    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public bool Equals(GaugeResponse other) {      if (ReferenceEquals(other, null)) {        return false;      }      if (ReferenceEquals(other, this)) {        return true;      }      if (Name != other.Name) return false;      if (LongValue != other.LongValue) return false;      if (DoubleValue != other.DoubleValue) return false;      if (StringValue != other.StringValue) return false;      if (ValueCase != other.ValueCase) return false;      return true;    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public override int GetHashCode() {      int hash = 1;      if (Name.Length != 0) hash ^= Name.GetHashCode();      if (valueCase_ == ValueOneofCase.LongValue) hash ^= LongValue.GetHashCode();      if (valueCase_ == ValueOneofCase.DoubleValue) hash ^= DoubleValue.GetHashCode();      if (valueCase_ == ValueOneofCase.StringValue) hash ^= StringValue.GetHashCode();      hash ^= (int) valueCase_;      return hash;    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public override string ToString() {      return pb::JsonFormatter.ToDiagnosticString(this);    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public void WriteTo(pb::CodedOutputStream output) {      if (Name.Length != 0) {        output.WriteRawTag(10);        output.WriteString(Name);      }      if (valueCase_ == ValueOneofCase.LongValue) {        output.WriteRawTag(16);        output.WriteInt64(LongValue);      }      if (valueCase_ == ValueOneofCase.DoubleValue) {        output.WriteRawTag(25);        output.WriteDouble(DoubleValue);      }      if (valueCase_ == ValueOneofCase.StringValue) {        output.WriteRawTag(34);        output.WriteString(StringValue);      }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public int CalculateSize() {      int size = 0;      if (Name.Length != 0) {        size += 1 + pb::CodedOutputStream.ComputeStringSize(Name);      }      if (valueCase_ == ValueOneofCase.LongValue) {        size += 1 + pb::CodedOutputStream.ComputeInt64Size(LongValue);      }      if (valueCase_ == ValueOneofCase.DoubleValue) {        size += 1 + 8;      }      if (valueCase_ == ValueOneofCase.StringValue) {        size += 1 + pb::CodedOutputStream.ComputeStringSize(StringValue);      }      return size;    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public void MergeFrom(GaugeResponse other) {      if (other == null) {        return;      }      if (other.Name.Length != 0) {        Name = other.Name;      }      switch (other.ValueCase) {        case ValueOneofCase.LongValue:          LongValue = other.LongValue;          break;        case ValueOneofCase.DoubleValue:          DoubleValue = other.DoubleValue;          break;        case ValueOneofCase.StringValue:          StringValue = other.StringValue;          break;      }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public void MergeFrom(pb::CodedInputStream input) {      uint tag;      while ((tag = input.ReadTag()) != 0) {        switch(tag) {          default:            input.SkipLastField();            break;          case 10: {            Name = input.ReadString();            break;          }          case 16: {            LongValue = input.ReadInt64();            break;          }          case 25: {            DoubleValue = input.ReadDouble();            break;          }          case 34: {            StringValue = input.ReadString();            break;          }        }      }    }  }  /// <summary>  /// Request message containing the gauge name  /// </summary>  public sealed partial class GaugeRequest : pb::IMessage<GaugeRequest> {    private static readonly pb::MessageParser<GaugeRequest> _parser = new pb::MessageParser<GaugeRequest>(() => new GaugeRequest());    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public static pb::MessageParser<GaugeRequest> Parser { get { return _parser; } }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public static pbr::MessageDescriptor Descriptor {      get { return global::Grpc.Testing.MetricsReflection.Descriptor.MessageTypes[1]; }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    pbr::MessageDescriptor pb::IMessage.Descriptor {      get { return Descriptor; }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public GaugeRequest() {      OnConstruction();    }    partial void OnConstruction();    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public GaugeRequest(GaugeRequest other) : this() {      name_ = other.name_;    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public GaugeRequest Clone() {      return new GaugeRequest(this);    }    /// <summary>Field number for the "name" field.</summary>    public const int NameFieldNumber = 1;    private string name_ = "";    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public string Name {      get { return name_; }      set {        name_ = pb::ProtoPreconditions.CheckNotNull(value, "value");      }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public override bool Equals(object other) {      return Equals(other as GaugeRequest);    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public bool Equals(GaugeRequest other) {      if (ReferenceEquals(other, null)) {        return false;      }      if (ReferenceEquals(other, this)) {        return true;      }      if (Name != other.Name) return false;      return true;    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public override int GetHashCode() {      int hash = 1;      if (Name.Length != 0) hash ^= Name.GetHashCode();      return hash;    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public override string ToString() {      return pb::JsonFormatter.ToDiagnosticString(this);    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public void WriteTo(pb::CodedOutputStream output) {      if (Name.Length != 0) {        output.WriteRawTag(10);        output.WriteString(Name);      }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public int CalculateSize() {      int size = 0;      if (Name.Length != 0) {        size += 1 + pb::CodedOutputStream.ComputeStringSize(Name);      }      return size;    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public void MergeFrom(GaugeRequest other) {      if (other == null) {        return;      }      if (other.Name.Length != 0) {        Name = other.Name;      }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public void MergeFrom(pb::CodedInputStream input) {      uint tag;      while ((tag = input.ReadTag()) != 0) {        switch(tag) {          default:            input.SkipLastField();            break;          case 10: {            Name = input.ReadString();            break;          }        }      }    }  }  public sealed partial class EmptyMessage : pb::IMessage<EmptyMessage> {    private static readonly pb::MessageParser<EmptyMessage> _parser = new pb::MessageParser<EmptyMessage>(() => new EmptyMessage());    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public static pb::MessageParser<EmptyMessage> Parser { get { return _parser; } }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public static pbr::MessageDescriptor Descriptor {      get { return global::Grpc.Testing.MetricsReflection.Descriptor.MessageTypes[2]; }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    pbr::MessageDescriptor pb::IMessage.Descriptor {      get { return Descriptor; }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public EmptyMessage() {      OnConstruction();    }    partial void OnConstruction();    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public EmptyMessage(EmptyMessage other) : this() {    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public EmptyMessage Clone() {      return new EmptyMessage(this);    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public override bool Equals(object other) {      return Equals(other as EmptyMessage);    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public bool Equals(EmptyMessage other) {      if (ReferenceEquals(other, null)) {        return false;      }      if (ReferenceEquals(other, this)) {        return true;      }      return true;    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public override int GetHashCode() {      int hash = 1;      return hash;    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public override string ToString() {      return pb::JsonFormatter.ToDiagnosticString(this);    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public void WriteTo(pb::CodedOutputStream output) {    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public int CalculateSize() {      int size = 0;      return size;    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public void MergeFrom(EmptyMessage other) {      if (other == null) {        return;      }    }    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]    public void MergeFrom(pb::CodedInputStream input) {      uint tag;      while ((tag = input.ReadTag()) != 0) {        switch(tag) {          default:            input.SkipLastField();            break;        }      }    }  }  #endregion}#endregion Designer generated code
 |