//
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: MessageProto.proto
//
#pragma warning disable 1591, 0612, 3021
#region Designer generated code
using pb = Google.Protobuf;
using pbr = Google.Protobuf.Reflection;
namespace NettyClient.proto
{
/// Holder for reflection information generated from MessageProto.proto
public static partial class MessageProtoReflection {
#region Descriptor
/// File descriptor for MessageProto.proto
public static pbr.FileDescriptor Descriptor {
get { return descriptor; }
}
private static pbr.FileDescriptor descriptor;
static MessageProtoReflection() {
byte[] descriptorData = System.Convert.FromBase64String(
string.Concat(
"ChJNZXNzYWdlUHJvdG8ucHJvdG8SEmNuLnNhZ2FjbG91ZC5wcm90byI3CgdN",
"ZXNzYWdlEgsKA2NtZBgBIAEoCRIOCgZ0YXNrSWQYAiABKAUSDwoHY29udGVu",
"dBgDIAEoCUIQQgxNZXNzYWdlUHJvdG9IAWIGcHJvdG8z"));
descriptor = pbr.FileDescriptor.FromGeneratedCode(descriptorData,
new pbr.FileDescriptor[] { },
new pbr.GeneratedClrTypeInfo(null, new pbr.GeneratedClrTypeInfo[] {
new pbr.GeneratedClrTypeInfo(typeof(Message), Message.Parser, new[]{ "Cmd", "TaskId", "Content" }, null, null, null)
}));
}
#endregion
}
#region Messages
public sealed partial class Message : pb.IMessage {
private static readonly pb.MessageParser _parser = new pb.MessageParser(() => new Message());
//04 private pb.UnknownFieldSet _unknownFields;
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pb.MessageParser Parser { get { return _parser; } }
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pbr.MessageDescriptor Descriptor {
get { return MessageProtoReflection.Descriptor.MessageTypes[0]; }
}
[System.Diagnostics.DebuggerNonUserCodeAttribute]
pbr.MessageDescriptor pb.IMessage.Descriptor {
get { return Descriptor; }
}
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public Message() {
OnConstruction();
}
partial void OnConstruction();
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public Message(Message other) : this() {
cmd_ = other.cmd_;
taskId_ = other.taskId_;
content_ = other.content_;
//04 _unknownFields = pb.UnknownFieldSet.Clone(other._unknownFields);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public Message Clone() {
return new Message(this);
}
/// Field number for the "cmd" field.
public const int CmdFieldNumber = 1;
private string cmd_ = "";
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public string Cmd {
get { return cmd_; }
set {
cmd_ = pb.ProtoPreconditions.CheckNotNull(value, "value");
}
}
/// Field number for the "taskId" field.
public const int TaskIdFieldNumber = 2;
private int taskId_;
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public int TaskId {
get { return taskId_; }
set {
taskId_ = value;
}
}
/// Field number for the "content" field.
public const int ContentFieldNumber = 3;
private string content_ = "";
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public string Content {
get { return content_; }
set {
content_ = pb.ProtoPreconditions.CheckNotNull(value, "value");
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public override bool Equals(object other) {
return Equals(other as Message);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public bool Equals(Message other) {
if (ReferenceEquals(other, null)) {
return false;
}
if (ReferenceEquals(other, this)) {
return true;
}
if (Cmd != other.Cmd) return false;
if (TaskId != other.TaskId) return false;
if (Content != other.Content) return false;
//04 return Equals(_unknownFields, other._unknownFields);
return true;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public override int GetHashCode() {
int hash = 1;
if (Cmd.Length != 0) hash ^= Cmd.GetHashCode();
if (TaskId != 0) hash ^= TaskId.GetHashCode();
if (Content.Length != 0) hash ^= Content.GetHashCode();
//04 if (_unknownFields != null) {hash ^= _unknownFields.GetHashCode();}
return hash;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public override string ToString() {
return pb.JsonFormatter.ToDiagnosticString(this);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public void WriteTo(pb.CodedOutputStream output) {
if (Cmd.Length != 0) {
output.WriteRawTag(10);
output.WriteString(Cmd);
}
if (TaskId != 0) {
output.WriteRawTag(16);
output.WriteInt32(TaskId);
}
if (Content.Length != 0) {
output.WriteRawTag(26);
output.WriteString(Content);
}
//04 if (_unknownFields != null){_unknownFields.WriteTo(output);}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public int CalculateSize() {
int size = 0;
if (Cmd.Length != 0) {
size += 1 + pb.CodedOutputStream.ComputeStringSize(Cmd);
}
if (TaskId != 0) {
size += 1 + pb.CodedOutputStream.ComputeInt32Size(TaskId);
}
if (Content.Length != 0) {
size += 1 + pb.CodedOutputStream.ComputeStringSize(Content);
}
//04 if (_unknownFields != null){size += _unknownFields.CalculateSize();}
return size;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public void MergeFrom(Message other) {
if (other == null) {
return;
}
if (other.Cmd.Length != 0) {
Cmd = other.Cmd;
}
if (other.TaskId != 0) {
TaskId = other.TaskId;
}
if (other.Content.Length != 0) {
Content = other.Content;
}
//04 _unknownFields = pb.UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute]
public void MergeFrom(pb.CodedInputStream input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
switch(tag) {
default:
//04 _unknownFields = Google.Protobuf.UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
case 10: {
Cmd = input.ReadString();
break;
}
case 16: {
TaskId = input.ReadInt32();
break;
}
case 26: {
Content = input.ReadString();
break;
}
}
}
}
}
#endregion
}
#endregion Designer generated code