// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: GetDataStoreItemRequest.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 {
/// Holder for reflection information generated from GetDataStoreItemRequest.proto
public static partial class GetDataStoreItemRequestReflection {
#region Descriptor
/// File descriptor for GetDataStoreItemRequest.proto
public static pbr::FileDescriptor Descriptor {
get { return descriptor; }
}
private static pbr::FileDescriptor descriptor;
static GetDataStoreItemRequestReflection() {
byte[] descriptorData = global::System.Convert.FromBase64String(
string.Concat(
"Ch1HZXREYXRhU3RvcmVJdGVtUmVxdWVzdC5wcm90bxITVGFuZ28uUE1SLkRh",
"dGFTdG9yZRoTRGF0YVN0b3JlSXRlbS5wcm90byJzChdHZXREYXRhU3RvcmVJ",
"dGVtUmVxdWVzdBISCgpDb2xsZWN0aW9uGAEgASgJEgsKA0tleRgCIAEoCRI3",
"CgtEZWZhdWx0SXRlbRgDIAEoCzIiLlRhbmdvLlBNUi5EYXRhU3RvcmUuRGF0",
"YVN0b3JlSXRlbUIfCh1jb20udHdpbmUudGFuZ28ucG1yLmRhdGFzdG9yZWIG",
"cHJvdG8z"));
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
new pbr::FileDescriptor[] { global::Tango.PMR.DataStore.DataStoreItemReflection.Descriptor, },
new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] {
new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.DataStore.GetDataStoreItemRequest), global::Tango.PMR.DataStore.GetDataStoreItemRequest.Parser, new[]{ "Collection", "Key", "DefaultItem" }, null, null, null)
}));
}
#endregion
}
#region Messages
public sealed partial class GetDataStoreItemRequest : pb::IMessage {
private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new GetDataStoreItemRequest());
[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.DataStore.GetDataStoreItemRequestReflection.Descriptor.MessageTypes[0]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public GetDataStoreItemRequest() {
OnConstruction();
}
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public GetDataStoreItemRequest(GetDataStoreItemRequest other) : this() {
collection_ = other.collection_;
key_ = other.key_;
DefaultItem = other.defaultItem_ != null ? other.DefaultItem.Clone() : null;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public GetDataStoreItemRequest Clone() {
return new GetDataStoreItemRequest(this);
}
/// Field number for the "Collection" field.
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");
}
}
/// Field number for the "Key" field.
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");
}
}
/// Field number for the "DefaultItem" field.
public const int DefaultItemFieldNumber = 3;
private global::Tango.PMR.DataStore.DataStoreItem defaultItem_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public global::Tango.PMR.DataStore.DataStoreItem DefaultItem {
get { return defaultItem_; }
set {
defaultItem_ = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override bool Equals(object other) {
return Equals(other as GetDataStoreItemRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public bool Equals(GetDataStoreItemRequest 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;
if (!object.Equals(DefaultItem, other.DefaultItem)) 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();
if (defaultItem_ != null) hash ^= DefaultItem.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);
}
if (defaultItem_ != null) {
output.WriteRawTag(26);
output.WriteMessage(DefaultItem);
}
}
[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);
}
if (defaultItem_ != null) {
size += 1 + pb::CodedOutputStream.ComputeMessageSize(DefaultItem);
}
return size;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public void MergeFrom(GetDataStoreItemRequest other) {
if (other == null) {
return;
}
if (other.Collection.Length != 0) {
Collection = other.Collection;
}
if (other.Key.Length != 0) {
Key = other.Key;
}
if (other.defaultItem_ != null) {
if (defaultItem_ == null) {
defaultItem_ = new global::Tango.PMR.DataStore.DataStoreItem();
}
DefaultItem.MergeFrom(other.DefaultItem);
}
}
[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;
}
case 26: {
if (defaultItem_ == null) {
defaultItem_ = new global::Tango.PMR.DataStore.DataStoreItem();
}
input.ReadMessage(defaultItem_);
break;
}
}
}
}
}
#endregion
}
#endregion Designer generated code