aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.PMR/Integration/ConfigureProtocolRequest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.PMR/Integration/ConfigureProtocolRequest.cs')
-rw-r--r--Software/Visual_Studio/Tango.PMR/Integration/ConfigureProtocolRequest.cs190
1 files changed, 0 insertions, 190 deletions
diff --git a/Software/Visual_Studio/Tango.PMR/Integration/ConfigureProtocolRequest.cs b/Software/Visual_Studio/Tango.PMR/Integration/ConfigureProtocolRequest.cs
deleted file mode 100644
index 7cb3ffefe..000000000
--- a/Software/Visual_Studio/Tango.PMR/Integration/ConfigureProtocolRequest.cs
+++ /dev/null
@@ -1,190 +0,0 @@
-// Generated by the protocol buffer compiler. DO NOT EDIT!
-// source: ConfigureProtocolRequest.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.Integration {
-
- /// <summary>Holder for reflection information generated from ConfigureProtocolRequest.proto</summary>
- public static partial class ConfigureProtocolRequestReflection {
-
- #region Descriptor
- /// <summary>File descriptor for ConfigureProtocolRequest.proto</summary>
- public static pbr::FileDescriptor Descriptor {
- get { return descriptor; }
- }
- private static pbr::FileDescriptor descriptor;
-
- static ConfigureProtocolRequestReflection() {
- byte[] descriptorData = global::System.Convert.FromBase64String(
- string.Concat(
- "Ch5Db25maWd1cmVQcm90b2NvbFJlcXVlc3QucHJvdG8SFVRhbmdvLlBNUi5J",
- "bnRlZ3JhdGlvbhocR2VuZXJpY01lc3NhZ2VQcm90b2NvbC5wcm90byJ9ChhD",
- "b25maWd1cmVQcm90b2NvbFJlcXVlc3QSGQoRRW5hYmxlQ29tcHJlc3Npb24Y",
- "ASABKAgSRgoPR2VuZXJpY1Byb3RvY29sGAIgASgOMi0uVGFuZ28uUE1SLklu",
- "dGVncmF0aW9uLkdlbmVyaWNNZXNzYWdlUHJvdG9jb2xCIQofY29tLnR3aW5l",
- "LnRhbmdvLnBtci5pbnRlZ3JhdGlvbmIGcHJvdG8z"));
- descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
- new pbr::FileDescriptor[] { global::Tango.PMR.Integration.GenericMessageProtocolReflection.Descriptor, },
- new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] {
- new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.Integration.ConfigureProtocolRequest), global::Tango.PMR.Integration.ConfigureProtocolRequest.Parser, new[]{ "EnableCompression", "GenericProtocol" }, null, null, null)
- }));
- }
- #endregion
-
- }
- #region Messages
- public sealed partial class ConfigureProtocolRequest : pb::IMessage<ConfigureProtocolRequest> {
- private static readonly pb::MessageParser<ConfigureProtocolRequest> _parser = new pb::MessageParser<ConfigureProtocolRequest>(() => new ConfigureProtocolRequest());
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
- public static pb::MessageParser<ConfigureProtocolRequest> Parser { get { return _parser; } }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
- public static pbr::MessageDescriptor Descriptor {
- get { return global::Tango.PMR.Integration.ConfigureProtocolRequestReflection.Descriptor.MessageTypes[0]; }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
- pbr::MessageDescriptor pb::IMessage.Descriptor {
- get { return Descriptor; }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
- public ConfigureProtocolRequest() {
- OnConstruction();
- }
-
- partial void OnConstruction();
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
- public ConfigureProtocolRequest(ConfigureProtocolRequest other) : this() {
- enableCompression_ = other.enableCompression_;
- genericProtocol_ = other.genericProtocol_;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
- public ConfigureProtocolRequest Clone() {
- return new ConfigureProtocolRequest(this);
- }
-
- /// <summary>Field number for the "EnableCompression" field.</summary>
- public const int EnableCompressionFieldNumber = 1;
- private bool enableCompression_;
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
- public bool EnableCompression {
- get { return enableCompression_; }
- set {
- enableCompression_ = value;
- }
- }
-
- /// <summary>Field number for the "GenericProtocol" field.</summary>
- public const int GenericProtocolFieldNumber = 2;
- private global::Tango.PMR.Integration.GenericMessageProtocol genericProtocol_ = 0;
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
- public global::Tango.PMR.Integration.GenericMessageProtocol GenericProtocol {
- get { return genericProtocol_; }
- set {
- genericProtocol_ = value;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
- public override bool Equals(object other) {
- return Equals(other as ConfigureProtocolRequest);
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
- public bool Equals(ConfigureProtocolRequest other) {
- if (ReferenceEquals(other, null)) {
- return false;
- }
- if (ReferenceEquals(other, this)) {
- return true;
- }
- if (EnableCompression != other.EnableCompression) return false;
- if (GenericProtocol != other.GenericProtocol) return false;
- return true;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
- public override int GetHashCode() {
- int hash = 1;
- if (EnableCompression != false) hash ^= EnableCompression.GetHashCode();
- if (GenericProtocol != 0) hash ^= GenericProtocol.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 (EnableCompression != false) {
- output.WriteRawTag(8);
- output.WriteBool(EnableCompression);
- }
- if (GenericProtocol != 0) {
- output.WriteRawTag(16);
- output.WriteEnum((int) GenericProtocol);
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
- public int CalculateSize() {
- int size = 0;
- if (EnableCompression != false) {
- size += 1 + 1;
- }
- if (GenericProtocol != 0) {
- size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) GenericProtocol);
- }
- return size;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
- public void MergeFrom(ConfigureProtocolRequest other) {
- if (other == null) {
- return;
- }
- if (other.EnableCompression != false) {
- EnableCompression = other.EnableCompression;
- }
- if (other.GenericProtocol != 0) {
- GenericProtocol = other.GenericProtocol;
- }
- }
-
- [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: {
- EnableCompression = input.ReadBool();
- break;
- }
- case 16: {
- genericProtocol_ = (global::Tango.PMR.Integration.GenericMessageProtocol) input.ReadEnum();
- break;
- }
- }
- }
- }
-
- }
-
- #endregion
-
-}
-
-#endregion Designer generated code