1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using System.Collections.Generic;
using System.Linq;
usi// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: CheckForUpdateResponse.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 CheckForUpdateResponse.proto</summary>
public static partial class CheckForUpdateResponseReflection {
#region Descriptor
/// <summary>File descriptor for CheckForUpdateResponse.proto</summary>
public static pbr::FileDescriptor Descriptor {
get { return descriptor; }
}
private static pbr::FileDescriptor descriptor;
static CheckForUpdateResponseReflection() {
byte[] descriptorData = global::System.Convert.FromBase64String(
string.Concat(
"ChxDaGVja0ZvclVwZGF0ZVJlc3BvbnNlLnByb3RvEhlUYW5nby5QTVIuU3lu",
"Y2hyb25pemF0aW9uIkQKFkNoZWNrRm9yVXBkYXRlUmVzcG9uc2USGQoRSXNV",
"cGRhdGVBdmFpbGFibGUYASABKAgSDwoHVmVyc2lvbhgCIAEoCUIlCiNjb20u",
"dHdpbmUudGFuZ28ucG1yLnN5bmNocm9uaXphdGlvbmIGcHJvdG8z"));
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
new pbr::FileDescriptor[] { },
new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] {
new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.Synchronization.CheckForUpdateResponse), global::Tango.PMR.Synchronization.CheckForUpdateResponse.Parser, new[]{ "IsUpdateAvailable", "Version" }, null, null, null)
}));
}
#endregion
}
#region Messages
public sealed partial class CheckForUpdateResponse : pb::IMessage<CheckForUpdateResponse> {
private static readonly pb::MessageParser<CheckForUpdateResponse> _parser = new pb::MessageParser<CheckForUpdateResponse>(() => new CheckForUpdateResponse());
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pb::MessageParser<CheckForUpdateResponse> Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pbr::MessageDescriptor Descriptor {
get { return global::Tango.PMR.Synchronization.CheckForUpdateResponseReflection.Descriptor.MessageTypes[0]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public CheckForUpdateResponse() {
OnConstruction();
}
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public CheckForUpdateResponse(CheckForUpdateResponse other) : this() {
isUpdateAvailable_ = other.isUpdateAvailable_;
version_ = other.version_;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public CheckForUpdateResponse Clone() {
return new CheckForUpdateResponse(this);
}
/// <summary>Field number for the "IsUpdateAvailable" field.</summary>
public const int IsUpdateAvailableFieldNumber = 1;
private bool isUpdateAvailable_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public bool IsUpdateAvailable {
get { return isUpdateAvailable_; }
set {
isUpdateAvailable_ = value;
}
}
/// <summary>Field number for the "Version" field.</summary>
public const int VersionFieldNumber = 2;
private string version_ = "";
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string Version {
get { return version_; }
set {
version_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override bool Equals(object other) {
return Equals(other as CheckForUpdateResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public bool Equals(CheckForUpdateResponse other) {
if (ReferenceEquals(other, null)) {
return false;
}
if (ReferenceEquals(other, this)) {
return true;
}
if (IsUpdateAvailable != other.IsUpdateAvailable) return false;
if (Version != other.Version) return false;
return true;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override int GetHashCode() {
int hash = 1;
if (IsUpdateAvailable != false) hash ^= IsUpdateAvailable.GetHashCode();
if (Version.Length != 0) hash ^= Version.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 (IsUpdateAvailable != false) {
output.WriteRawTag(8);
output.WriteBool(IsUpdateAvailable);
}
if (Version.Length != 0) {
output.WriteRawTag(18);
output.WriteString(Version);
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int CalculateSize() {
int size = 0;
if (IsUpdateAvailable != false) {
size += 1 + 1;
}
if (Version.Length != 0) {
size += 1 + pb::CodedOutputStream.ComputeStringSize(Version);
}
return size;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public void MergeFrom(CheckForUpdateResponse other) {
if (other == null) {
return;
}
if (other.IsUpdateAvailable != false) {
IsUpdateAvailable = other.IsUpdateAvailable;
}
if (other.Version.Length != 0) {
Version = other.Version;
}
}
[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: {
IsUpdateAvailable = input.ReadBool();
break;
}
case 18: {
Version = input.ReadString();
break;
}
}
}
}
}
#endregion
}
#endregion Designer generated code
|