// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: GetStorageInfoResponse.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.IO {
/// Holder for reflection information generated from GetStorageInfoResponse.proto
public static partial class GetStorageInfoResponseReflection {
#region Descriptor
/// File descriptor for GetStorageInfoResponse.proto
public static pbr::FileDescriptor Descriptor {
get { return descriptor; }
}
private static pbr::FileDescriptor descriptor;
static GetStorageInfoResponseReflection() {
byte[] descriptorData = global::System.Convert.FromBase64String(
string.Concat(
"ChxHZXRTdG9yYWdlSW5mb1Jlc3BvbnNlLnByb3RvEgxUYW5nby5QTVIuSU8i",
"SwoWR2V0U3RvcmFnZUluZm9SZXNwb25zZRIQCghDYXBhY2l0eRgBIAEoAxIR",
"CglGcmVlU3BhY2UYAiABKAMSDAoEUm9vdBgDIAEoCUIYChZjb20udHdpbmUu",
"dGFuZ28ucG1yLmlvYgZwcm90bzM="));
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
new pbr::FileDescriptor[] { },
new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] {
new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.IO.GetStorageInfoResponse), global::Tango.PMR.IO.GetStorageInfoResponse.Parser, new[]{ "Capacity", "FreeSpace", "Root" }, null, null, null)
}));
}
#endregion
}
#region Messages
public sealed partial class GetStorageInfoResponse : pb::IMessage {
private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new GetStorageInfoResponse());
[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.IO.GetStorageInfoResponseReflection.Descriptor.MessageTypes[0]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public GetStorageInfoResponse() {
OnConstruction();
}
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public GetStorageInfoResponse(GetStorageInfoResponse other) : this() {
capacity_ = other.capacity_;
freeSpace_ = other.freeSpace_;
root_ = other.root_;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public GetStorageInfoResponse Clone() {
return new GetStorageInfoResponse(this);
}
/// Field number for the "Capacity" field.
public const int CapacityFieldNumber = 1;
private long capacity_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public long Capacity {
get { return capacity_; }
set {
capacity_ = value;
}
}
/// Field number for the "FreeSpace" field.
public const int FreeSpaceFieldNumber = 2;
private long freeSpace_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public long FreeSpace {
get { return freeSpace_; }
set {
freeSpace_ = value;
}
}
/// Field number for the "Root" field.
public const int RootFieldNumber = 3;
private string root_ = "";
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public string Root {
get { return root_; }
set {
root_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override bool Equals(object other) {
return Equals(other as GetStorageInfoResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public bool Equals(GetStorageInfoResponse other) {
if (ReferenceEquals(other, null)) {
return false;
}
if (ReferenceEquals(other, this)) {
return true;
}
if (Capacity != other.Capacity) return false;
if (FreeSpace != other.FreeSpace) return false;
if (Root != other.Root) return false;
return true;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override int GetHashCode() {
int hash = 1;
if (Capacity != 0L) hash ^= Capacity.GetHashCode();
if (FreeSpace != 0L) hash ^= FreeSpace.GetHashCode();
if (Root.Length != 0) hash ^= Root.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 (Capacity != 0L) {
output.WriteRawTag(8);
output.WriteInt64(Capacity);
}
if (FreeSpace != 0L) {
output.WriteRawTag(16);
output.WriteInt64(FreeSpace);
}
if (Root.Length != 0) {
output.WriteRawTag(26);
output.WriteString(Root);
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int CalculateSize() {
int size = 0;
if (Capacity != 0L) {
size += 1 + pb::CodedOutputStream.ComputeInt64Size(Capacity);
}
if (FreeSpace != 0L) {
size += 1 + pb::CodedOutputStream.ComputeInt64Size(FreeSpace);
}
if (Root.Length != 0) {
size += 1 + pb::CodedOutputStream.ComputeStringSize(Root);
}
return size;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public void MergeFrom(GetStorageInfoResponse other) {
if (other == null) {
return;
}
if (other.Capacity != 0L) {
Capacity = other.Capacity;
}
if (other.FreeSpace != 0L) {
FreeSpace = other.FreeSpace;
}
if (other.Root.Length != 0) {
Root = other.Root;
}
}
[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: {
Capacity = input.ReadInt64();
break;
}
case 16: {
FreeSpace = input.ReadInt64();
break;
}
case 26: {
Root = input.ReadString();
break;
}
}
}
}
}
#endregion
}
#endregion Designer generated code