// Generated by the protocol buffer compiler. DO NOT EDIT! // source: ProcedureRequest.proto #pragma warning disable 1591, 0612, 3021 #region Designer generated code using pb = global::Google.Protobuf; using pbc = global::Google.Protobuf.Collections; using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace Tango.PMR.Stubs { /// Holder for reflection information generated from ProcedureRequest.proto public static partial class ProcedureRequestReflection { #region Descriptor /// File descriptor for ProcedureRequest.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; static ProcedureRequestReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "ChZQcm9jZWR1cmVSZXF1ZXN0LnByb3RvEg9UYW5nby5QTVIuU3R1YnMiUgoQ", "UHJvY2VkdXJlUmVxdWVzdBIMCgRUeXBlGAEgASgFEg8KB1RpbWVvdXQYAiAB", "KAUSEAoIVGVzdE5hbWUYAyABKAkSDQoFUGFyYW0YBCADKAJCGwoZY29tLnR3", "aW5lLnRhbmdvLnBtci5zdHVic2IGcHJvdG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { }, new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.Stubs.ProcedureRequest), global::Tango.PMR.Stubs.ProcedureRequest.Parser, new[]{ "Type", "Timeout", "TestName", "Param" }, null, null, null) })); } #endregion } #region Messages public sealed partial class ProcedureRequest : pb::IMessage { private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new ProcedureRequest()); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public static pbr::MessageDescriptor Descriptor { get { return global::Tango.PMR.Stubs.ProcedureRequestReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] pbr::MessageDescriptor pb::IMessage.Descriptor { get { return Descriptor; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public ProcedureRequest() { OnConstruction(); } partial void OnConstruction(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public ProcedureRequest(ProcedureRequest other) : this() { type_ = other.type_; timeout_ = other.timeout_; testName_ = other.testName_; param_ = other.param_.Clone(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public ProcedureRequest Clone() { return new ProcedureRequest(this); } /// Field number for the "Type" field. public const int TypeFieldNumber = 1; private int type_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public int Type { get { return type_; } set { type_ = value; } } /// Field number for the "Timeout" field. public const int TimeoutFieldNumber = 2; private int timeout_; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public int Timeout { get { return timeout_; } set { timeout_ = value; } } /// Field number for the "TestName" field. public const int TestNameFieldNumber = 3; private string testName_ = ""; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public string TestName { get { return testName_; } set { testName_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); } } /// Field number for the "Param" field. public const int ParamFieldNumber = 4; private static readonly pb::FieldCodec _repeated_param_codec = pb::FieldCodec.ForFloat(34); private readonly pbc::RepeatedField param_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public pbc::RepeatedField Param { get { return param_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public override bool Equals(object other) { return Equals(other as ProcedureRequest); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public bool Equals(ProcedureRequest other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } if (Type != other.Type) return false; if (Timeout != other.Timeout) return false; if (TestName != other.TestName) return false; if(!param_.Equals(other.param_)) return false; return true; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public override int GetHashCode() { int hash = 1; if (Type != 0) hash ^= Type.GetHashCode(); if (Timeout != 0) hash ^= Timeout.GetHashCode(); if (TestName.Length != 0) hash ^= TestName.GetHashCode(); hash ^= param_.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 (Type != 0) { output.WriteRawTag(8); output.WriteInt32(Type); } if (Timeout != 0) { output.WriteRawTag(16); output.WriteInt32(Timeout); } if (TestName.Length != 0) { output.WriteRawTag(26); output.WriteString(TestName); } param_.WriteTo(output, _repeated_param_codec); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public int CalculateSize() { int size = 0; if (Type != 0) { size += 1 + pb::CodedOutputStream.ComputeInt32Size(Type); } if (Timeout != 0) { size += 1 + pb::CodedOutputStream.ComputeInt32Size(Timeout); } if (TestName.Length != 0) { size += 1 + pb::CodedOutputStream.ComputeStringSize(TestName); } size += param_.CalculateSize(_repeated_param_codec); return size; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public void MergeFrom(ProcedureRequest other) { if (other == null) { return; } if (other.Type != 0) { Type = other.Type; } if (other.Timeout != 0) { Timeout = other.Timeout; } if (other.TestName.Length != 0) { TestName = other.TestName; } param_.Add(other.param_); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public void MergeFrom(pb::CodedInputStream input) { uint tag; while ((tag = input.ReadTag()) != 0) { switch(tag) { default: input.SkipLastField(); break; case 8: { Type = input.ReadInt32(); break; } case 16: { Timeout = input.ReadInt32(); break; } case 26: { TestName = input.ReadString(); break; } case 34: case 37: { param_.AddEntriesFrom(input, _repeated_param_codec); break; } } } } } #endregion } #endregion Designer generated code