diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.PMR/DataStore/DataStoreItemModifiedRequest.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.PMR/DataStore/DataStoreItemModifiedRequest.cs | 188 |
1 files changed, 0 insertions, 188 deletions
diff --git a/Software/Visual_Studio/Tango.PMR/DataStore/DataStoreItemModifiedRequest.cs b/Software/Visual_Studio/Tango.PMR/DataStore/DataStoreItemModifiedRequest.cs deleted file mode 100644 index c4a8163fd..000000000 --- a/Software/Visual_Studio/Tango.PMR/DataStore/DataStoreItemModifiedRequest.cs +++ /dev/null @@ -1,188 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: DataStoreItemModifiedRequest.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.DataStore { - - /// <summary>Holder for reflection information generated from DataStoreItemModifiedRequest.proto</summary> - public static partial class DataStoreItemModifiedRequestReflection { - - #region Descriptor - /// <summary>File descriptor for DataStoreItemModifiedRequest.proto</summary> - public static pbr::FileDescriptor Descriptor { - get { return descriptor; } - } - private static pbr::FileDescriptor descriptor; - - static DataStoreItemModifiedRequestReflection() { - byte[] descriptorData = global::System.Convert.FromBase64String( - string.Concat( - "CiJEYXRhU3RvcmVJdGVtTW9kaWZpZWRSZXF1ZXN0LnByb3RvEhNUYW5nby5Q", - "TVIuRGF0YVN0b3JlIj8KHERhdGFTdG9yZUl0ZW1Nb2RpZmllZFJlcXVlc3QS", - "EgoKQ29sbGVjdGlvbhgBIAEoCRILCgNLZXkYAiABKAlCHwodY29tLnR3aW5l", - "LnRhbmdvLnBtci5kYXRhc3RvcmViBnByb3RvMw==")); - descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, - new pbr::FileDescriptor[] { }, - new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] { - new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.DataStore.DataStoreItemModifiedRequest), global::Tango.PMR.DataStore.DataStoreItemModifiedRequest.Parser, new[]{ "Collection", "Key" }, null, null, null) - })); - } - #endregion - - } - #region Messages - public sealed partial class DataStoreItemModifiedRequest : pb::IMessage<DataStoreItemModifiedRequest> { - private static readonly pb::MessageParser<DataStoreItemModifiedRequest> _parser = new pb::MessageParser<DataStoreItemModifiedRequest>(() => new DataStoreItemModifiedRequest()); - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public static pb::MessageParser<DataStoreItemModifiedRequest> Parser { get { return _parser; } } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public static pbr::MessageDescriptor Descriptor { - get { return global::Tango.PMR.DataStore.DataStoreItemModifiedRequestReflection.Descriptor.MessageTypes[0]; } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - pbr::MessageDescriptor pb::IMessage.Descriptor { - get { return Descriptor; } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public DataStoreItemModifiedRequest() { - OnConstruction(); - } - - partial void OnConstruction(); - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public DataStoreItemModifiedRequest(DataStoreItemModifiedRequest other) : this() { - collection_ = other.collection_; - key_ = other.key_; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public DataStoreItemModifiedRequest Clone() { - return new DataStoreItemModifiedRequest(this); - } - - /// <summary>Field number for the "Collection" field.</summary> - public const int CollectionFieldNumber = 1; - private string collection_ = ""; - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public string Collection { - get { return collection_; } - set { - collection_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); - } - } - - /// <summary>Field number for the "Key" field.</summary> - public const int KeyFieldNumber = 2; - private string key_ = ""; - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public string Key { - get { return key_; } - set { - key_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public override bool Equals(object other) { - return Equals(other as DataStoreItemModifiedRequest); - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public bool Equals(DataStoreItemModifiedRequest other) { - if (ReferenceEquals(other, null)) { - return false; - } - if (ReferenceEquals(other, this)) { - return true; - } - if (Collection != other.Collection) return false; - if (Key != other.Key) return false; - return true; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public override int GetHashCode() { - int hash = 1; - if (Collection.Length != 0) hash ^= Collection.GetHashCode(); - if (Key.Length != 0) hash ^= Key.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 (Collection.Length != 0) { - output.WriteRawTag(10); - output.WriteString(Collection); - } - if (Key.Length != 0) { - output.WriteRawTag(18); - output.WriteString(Key); - } - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public int CalculateSize() { - int size = 0; - if (Collection.Length != 0) { - size += 1 + pb::CodedOutputStream.ComputeStringSize(Collection); - } - if (Key.Length != 0) { - size += 1 + pb::CodedOutputStream.ComputeStringSize(Key); - } - return size; - } - - [global::System.Diagnostics.DebuggerNonUserCodeAttribute] - public void MergeFrom(DataStoreItemModifiedRequest other) { - if (other == null) { - return; - } - if (other.Collection.Length != 0) { - Collection = other.Collection; - } - if (other.Key.Length != 0) { - Key = other.Key; - } - } - - [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: { - Collection = input.ReadString(); - break; - } - case 18: { - Key = input.ReadString(); - break; - } - } - } - } - - } - - #endregion - -} - -#endregion Designer generated code |
