//
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: MultiplayerGetFightGateScRsp.proto
//
#pragma warning disable 1591, 0612, 3021, 8981
#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 EggLink.DanhengServer.Proto {
/// Holder for reflection information generated from MultiplayerGetFightGateScRsp.proto
public static partial class MultiplayerGetFightGateScRspReflection {
#region Descriptor
/// File descriptor for MultiplayerGetFightGateScRsp.proto
public static pbr::FileDescriptor Descriptor {
get { return descriptor; }
}
private static pbr::FileDescriptor descriptor;
static MultiplayerGetFightGateScRspReflection() {
byte[] descriptorData = global::System.Convert.FromBase64String(
string.Concat(
"CiJNdWx0aXBsYXllckdldEZpZ2h0R2F0ZVNjUnNwLnByb3RvInQKHE11bHRp",
"cGxheWVyR2V0RmlnaHRHYXRlU2NSc3ASEwoLQU9LQ01NUEZHQkMYAyABKAkS",
"FAoMZ2F0ZV9yb29tX2lkGAggASgEEgoKAmlwGAcgASgJEgwKBHBvcnQYBCAB",
"KA0SDwoHcmV0Y29kZRgJIAEoDUIeqgIbRWdnTGluay5EYW5oZW5nU2VydmVy",
"LlByb3RvYgZwcm90bzM="));
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
new pbr::FileDescriptor[] { },
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MultiplayerGetFightGateScRsp), global::EggLink.DanhengServer.Proto.MultiplayerGetFightGateScRsp.Parser, new[]{ "AOKCMMPFGBC", "GateRoomId", "Ip", "Port", "Retcode" }, null, null, null, null)
}));
}
#endregion
}
#region Messages
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class MultiplayerGetFightGateScRsp : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
#endif
{
private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MultiplayerGetFightGateScRsp());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::EggLink.DanhengServer.Proto.MultiplayerGetFightGateScRspReflection.Descriptor.MessageTypes[0]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public MultiplayerGetFightGateScRsp() {
OnConstruction();
}
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public MultiplayerGetFightGateScRsp(MultiplayerGetFightGateScRsp other) : this() {
aOKCMMPFGBC_ = other.aOKCMMPFGBC_;
gateRoomId_ = other.gateRoomId_;
ip_ = other.ip_;
port_ = other.port_;
retcode_ = other.retcode_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public MultiplayerGetFightGateScRsp Clone() {
return new MultiplayerGetFightGateScRsp(this);
}
/// Field number for the "AOKCMMPFGBC" field.
public const int AOKCMMPFGBCFieldNumber = 3;
private string aOKCMMPFGBC_ = "";
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public string AOKCMMPFGBC {
get { return aOKCMMPFGBC_; }
set {
aOKCMMPFGBC_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
}
}
/// Field number for the "gate_room_id" field.
public const int GateRoomIdFieldNumber = 8;
private ulong gateRoomId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public ulong GateRoomId {
get { return gateRoomId_; }
set {
gateRoomId_ = value;
}
}
/// Field number for the "ip" field.
public const int IpFieldNumber = 7;
private string ip_ = "";
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public string Ip {
get { return ip_; }
set {
ip_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
}
}
/// Field number for the "port" field.
public const int PortFieldNumber = 4;
private uint port_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public uint Port {
get { return port_; }
set {
port_ = value;
}
}
/// Field number for the "retcode" field.
public const int RetcodeFieldNumber = 9;
private uint retcode_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public uint Retcode {
get { return retcode_; }
set {
retcode_ = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as MultiplayerGetFightGateScRsp);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(MultiplayerGetFightGateScRsp other) {
if (ReferenceEquals(other, null)) {
return false;
}
if (ReferenceEquals(other, this)) {
return true;
}
if (AOKCMMPFGBC != other.AOKCMMPFGBC) return false;
if (GateRoomId != other.GateRoomId) return false;
if (Ip != other.Ip) return false;
if (Port != other.Port) return false;
if (Retcode != other.Retcode) return false;
return Equals(_unknownFields, other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (AOKCMMPFGBC.Length != 0) hash ^= AOKCMMPFGBC.GetHashCode();
if (GateRoomId != 0UL) hash ^= GateRoomId.GetHashCode();
if (Ip.Length != 0) hash ^= Ip.GetHashCode();
if (Port != 0) hash ^= Port.GetHashCode();
if (Retcode != 0) hash ^= Retcode.GetHashCode();
if (_unknownFields != null) {
hash ^= _unknownFields.GetHashCode();
}
return hash;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
#else
if (AOKCMMPFGBC.Length != 0) {
output.WriteRawTag(26);
output.WriteString(AOKCMMPFGBC);
}
if (Port != 0) {
output.WriteRawTag(32);
output.WriteUInt32(Port);
}
if (Ip.Length != 0) {
output.WriteRawTag(58);
output.WriteString(Ip);
}
if (GateRoomId != 0UL) {
output.WriteRawTag(64);
output.WriteUInt64(GateRoomId);
}
if (Retcode != 0) {
output.WriteRawTag(72);
output.WriteUInt32(Retcode);
}
if (_unknownFields != null) {
_unknownFields.WriteTo(output);
}
#endif
}
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (AOKCMMPFGBC.Length != 0) {
output.WriteRawTag(26);
output.WriteString(AOKCMMPFGBC);
}
if (Port != 0) {
output.WriteRawTag(32);
output.WriteUInt32(Port);
}
if (Ip.Length != 0) {
output.WriteRawTag(58);
output.WriteString(Ip);
}
if (GateRoomId != 0UL) {
output.WriteRawTag(64);
output.WriteUInt64(GateRoomId);
}
if (Retcode != 0) {
output.WriteRawTag(72);
output.WriteUInt32(Retcode);
}
if (_unknownFields != null) {
_unknownFields.WriteTo(ref output);
}
}
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (AOKCMMPFGBC.Length != 0) {
size += 1 + pb::CodedOutputStream.ComputeStringSize(AOKCMMPFGBC);
}
if (GateRoomId != 0UL) {
size += 1 + pb::CodedOutputStream.ComputeUInt64Size(GateRoomId);
}
if (Ip.Length != 0) {
size += 1 + pb::CodedOutputStream.ComputeStringSize(Ip);
}
if (Port != 0) {
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Port);
}
if (Retcode != 0) {
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Retcode);
}
if (_unknownFields != null) {
size += _unknownFields.CalculateSize();
}
return size;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(MultiplayerGetFightGateScRsp other) {
if (other == null) {
return;
}
if (other.AOKCMMPFGBC.Length != 0) {
AOKCMMPFGBC = other.AOKCMMPFGBC;
}
if (other.GateRoomId != 0UL) {
GateRoomId = other.GateRoomId;
}
if (other.Ip.Length != 0) {
Ip = other.Ip;
}
if (other.Port != 0) {
Port = other.Port;
}
if (other.Retcode != 0) {
Retcode = other.Retcode;
}
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
case 26: {
AOKCMMPFGBC = input.ReadString();
break;
}
case 32: {
Port = input.ReadUInt32();
break;
}
case 58: {
Ip = input.ReadString();
break;
}
case 64: {
GateRoomId = input.ReadUInt64();
break;
}
case 72: {
Retcode = input.ReadUInt32();
break;
}
}
}
#endif
}
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
case 26: {
AOKCMMPFGBC = input.ReadString();
break;
}
case 32: {
Port = input.ReadUInt32();
break;
}
case 58: {
Ip = input.ReadString();
break;
}
case 64: {
GateRoomId = input.ReadUInt64();
break;
}
case 72: {
Retcode = input.ReadUInt32();
break;
}
}
}
}
#endif
}
#endregion
}
#endregion Designer generated code