1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: SynchronizeDBRequest.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.Synchronization {
/// <summary>Holder for reflection information generated from SynchronizeDBRequest.proto</summary>
public static partial class SynchronizeDBRequestReflection {
#region Descriptor
/// <summary>File descriptor for SynchronizeDBRequest.proto</summary>
public static pbr::FileDescriptor Descriptor {
get { return descriptor; }
}
private static pbr::FileDescriptor descriptor;
static SynchronizeDBRequestReflection() {
byte[] descriptorData = global::System.Convert.FromBase64String(
string.Concat(
"ChpTeW5jaHJvbml6ZURCUmVxdWVzdC5wcm90bxIZVGFuZ28uUE1SLlN5bmNo",
"cm9uaXphdGlvbiI9ChRTeW5jaHJvbml6ZURCUmVxdWVzdBIUCgxTZXJpYWxO",
"dW1iZXIYASABKAkSDwoHTG9jYWxEQhgCIAEoDEIlCiNjb20udHdpbmUudGFu",
"Z28ucG1yLnN5bmNocm9uaXphdGlvbmIGcHJvdG8z"));
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
new pbr::FileDescriptor[] { },
new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] {
new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.Synchronization.SynchronizeDBRequest), global::Tango.PMR.Synchronization.SynchronizeDBRequest.Parser, new[]{ "SerialNumber", "LocalDB" }, null, null, null)
}));
}
#endregion
}
#region Messages
public sealed partial class SynchronizeDBRequest : pb::IMessage<SynchronizeDBRequest> {
private static readonly pb::MessageParser<SynchronizeDBRequest> _parser = new pb::MessageParser<SynchronizeDBRequest>(() => new SynchronizeDBRequest());
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pb::MessageParser<SynchronizeDBRequest> Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pbr::MessageDescriptor Descriptor {
get { return global::Tango.PMR.Synchronization.SynchronizeDBRequestReflection.Descriptor.MessageTypes[0]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public SynchronizeDBRequest() {
OnConstruction();
}
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public SynchronizeDBRequest(SynchronizeDBRequest other) : this() {
serialNumber_ = other.serialNumber_;
localDB_ = other.localDB_;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public SynchronizeDBRequest Clone() {
return new SynchronizeDBRequest(this);
}
/// <summary>Field number for the "SerialNumber" field.</summary>
public const int SerialNumberFieldNumber = 1;
private string serialNumber_ = "";
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string SerialNumber {
get { return serialNumber_; }
set {
serialNumber_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
}
}
/// <summary>Field number for the "LocalDB" field.</summary>
public const int LocalDBFieldNumber = 2;
private pb::ByteString localDB_ = pb::ByteString.Empty;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pb::ByteString LocalDB {
get { return localDB_; }
set {
localDB_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override bool Equals(object other) {
return Equals(other as SynchronizeDBRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public bool Equals(SynchronizeDBRequest other) {
if (ReferenceEquals(other, null)) {
return false;
}
if (ReferenceEquals(other, this)) {
return true;
}
if (SerialNumber != other.SerialNumber) return false;
if (LocalDB != other.LocalDB) return false;
return true;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override int GetHashCode() {
int hash = 1;
if (SerialNumber.Length != 0) hash ^= SerialNumber.GetHashCode();
if (LocalDB.Length != 0) hash ^= LocalDB.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 (SerialNumber.Length != 0) {
output.WriteRawTag(10);
output.WriteString(SerialNumber);
}
if (LocalDB.Length != 0) {
output.WriteRawTag(18);
output.WriteBytes(LocalDB);
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int CalculateSize() {
int size = 0;
if (SerialNumber.Length != 0) {
size += 1 + pb::CodedOutputStream.ComputeStringSize(SerialNumber);
}
if (LocalDB.Length != 0) {
size += 1 + pb::CodedOutputStream.ComputeBytesSize(LocalDB);
}
return size;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public void MergeFrom(SynchronizeDBRequest other) {
if (other == null) {
return;
}
if (other.SerialNumber.Length != 0) {
SerialNumber = other.SerialNumber;
}
if (other.LocalDB.Length != 0) {
LocalDB = other.LocalDB;
}
}
[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: {
SerialNumber = input.ReadString();
break;
}
case 18: {
LocalDB = input.ReadBytes();
break;
}
}
}
}
}
#endregion
}
#endregion Designer generated code
|