_xiaofang/xiaofang/Assets/comm/Proto/MessageBroadcast.cs

526 lines
17 KiB
C#
Raw Normal View History

2024-11-07 22:02:39 +08:00
// <auto-generated>
// Generated by the protocol buffer compiler. DO NOT EDIT!
2024-11-23 14:08:04 +08:00
// source: message_broadcast.proto
2024-11-07 22:02:39 +08:00
// </auto-generated>
#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;
2024-11-23 14:08:04 +08:00
/// <summary>Holder for reflection information generated from message_broadcast.proto</summary>
public static partial class MessageBroadcastReflection {
2024-11-07 22:02:39 +08:00
#region Descriptor
2024-11-23 14:08:04 +08:00
/// <summary>File descriptor for message_broadcast.proto</summary>
2024-11-07 22:02:39 +08:00
public static pbr::FileDescriptor Descriptor {
get { return descriptor; }
}
private static pbr::FileDescriptor descriptor;
2024-11-23 14:08:04 +08:00
static MessageBroadcastReflection() {
2024-11-07 22:02:39 +08:00
byte[] descriptorData = global::System.Convert.FromBase64String(
string.Concat(
2024-11-23 14:08:04 +08:00
"ChdtZXNzYWdlX2Jyb2FkY2FzdC5wcm90byJUChdNZXNzYWdlQnJvYWRjYXN0",
"UmVxdWVzdBIOCgZyb29tSWQYASABKAkSDAoEdHlwZRgCIAEoBRIOCgZyb2xl",
"SWQYAyABKAkSCwoDY21kGAQgASgJIhoKGE1lc3NhZ2VCcm9hZGNhc3RSZXNw",
"b25zZUIHWgUuLztwYmIGcHJvdG8z"));
2024-11-07 22:02:39 +08:00
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
new pbr::FileDescriptor[] { },
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
2024-11-23 14:08:04 +08:00
new pbr::GeneratedClrTypeInfo(typeof(global::MessageBroadcastRequest), global::MessageBroadcastRequest.Parser, new[]{ "RoomId", "Type", "RoleId", "Cmd" }, null, null, null, null),
new pbr::GeneratedClrTypeInfo(typeof(global::MessageBroadcastResponse), global::MessageBroadcastResponse.Parser, null, null, null, null, null)
2024-11-07 22:02:39 +08:00
}));
}
#endregion
}
#region Messages
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
2024-11-23 14:08:04 +08:00
public sealed partial class MessageBroadcastRequest : pb::IMessage<MessageBroadcastRequest>
2024-11-07 22:02:39 +08:00
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
#endif
{
2024-11-23 14:08:04 +08:00
private static readonly pb::MessageParser<MessageBroadcastRequest> _parser = new pb::MessageParser<MessageBroadcastRequest>(() => new MessageBroadcastRequest());
2024-11-07 22:02:39 +08:00
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public static pb::MessageParser<MessageBroadcastRequest> Parser { get { return _parser; } }
2024-11-07 22:02:39 +08:00
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
2024-11-23 14:08:04 +08:00
get { return global::MessageBroadcastReflection.Descriptor.MessageTypes[0]; }
2024-11-07 22:02:39 +08:00
}
[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)]
2024-11-23 14:08:04 +08:00
public MessageBroadcastRequest() {
2024-11-07 22:02:39 +08:00
OnConstruction();
}
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public MessageBroadcastRequest(MessageBroadcastRequest other) : this() {
roomId_ = other.roomId_;
type_ = other.type_;
roleId_ = other.roleId_;
cmd_ = other.cmd_;
2024-11-07 22:02:39 +08:00
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public MessageBroadcastRequest Clone() {
return new MessageBroadcastRequest(this);
2024-11-07 22:02:39 +08:00
}
2024-11-23 14:08:04 +08:00
/// <summary>Field number for the "roomId" field.</summary>
public const int RoomIdFieldNumber = 1;
private string roomId_ = "";
2024-11-07 22:02:39 +08:00
/// <summary>
2024-11-23 14:08:04 +08:00
/// 房间id
2024-11-07 22:02:39 +08:00
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public string RoomId {
get { return roomId_; }
2024-11-07 22:02:39 +08:00
set {
2024-11-23 14:08:04 +08:00
roomId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
2024-11-07 22:02:39 +08:00
}
}
2024-11-23 14:08:04 +08:00
/// <summary>Field number for the "type" field.</summary>
public const int TypeFieldNumber = 2;
private int type_;
2024-11-07 22:02:39 +08:00
/// <summary>
2024-11-23 14:08:04 +08:00
/// 消息类型 1. 文本 2. 图片 3. 语音 4. 视频
2024-11-07 22:02:39 +08:00
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public int Type {
get { return type_; }
2024-11-07 22:02:39 +08:00
set {
2024-11-23 14:08:04 +08:00
type_ = value;
2024-11-07 22:02:39 +08:00
}
}
2024-11-23 14:08:04 +08:00
/// <summary>Field number for the "roleId" field.</summary>
public const int RoleIdFieldNumber = 3;
private string roleId_ = "";
2024-11-07 22:02:39 +08:00
/// <summary>
2024-11-23 14:08:04 +08:00
/// 角色Id 如果为空就是给所有人发
2024-11-07 22:02:39 +08:00
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public string RoleId {
get { return roleId_; }
2024-11-07 22:02:39 +08:00
set {
2024-11-23 14:08:04 +08:00
roleId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
2024-11-07 22:02:39 +08:00
}
}
2024-11-23 14:08:04 +08:00
/// <summary>Field number for the "cmd" field.</summary>
public const int CmdFieldNumber = 4;
private string cmd_ = "";
2024-11-07 22:02:39 +08:00
/// <summary>
2024-11-23 14:08:04 +08:00
/// 自定义命令
2024-11-07 22:02:39 +08:00
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public string Cmd {
get { return cmd_; }
2024-11-07 22:02:39 +08:00
set {
2024-11-23 14:08:04 +08:00
cmd_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
2024-11-07 22:02:39 +08:00
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
2024-11-23 14:08:04 +08:00
return Equals(other as MessageBroadcastRequest);
2024-11-07 22:02:39 +08:00
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public bool Equals(MessageBroadcastRequest other) {
2024-11-07 22:02:39 +08:00
if (ReferenceEquals(other, null)) {
return false;
}
if (ReferenceEquals(other, this)) {
return true;
}
2024-11-23 14:08:04 +08:00
if (RoomId != other.RoomId) return false;
if (Type != other.Type) return false;
if (RoleId != other.RoleId) return false;
if (Cmd != other.Cmd) return false;
2024-11-07 22:02:39 +08:00
return Equals(_unknownFields, other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
2024-11-23 14:08:04 +08:00
if (RoomId.Length != 0) hash ^= RoomId.GetHashCode();
if (Type != 0) hash ^= Type.GetHashCode();
if (RoleId.Length != 0) hash ^= RoleId.GetHashCode();
if (Cmd.Length != 0) hash ^= Cmd.GetHashCode();
2024-11-07 22:02:39 +08:00
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
2024-11-23 14:08:04 +08:00
if (RoomId.Length != 0) {
2024-11-07 22:02:39 +08:00
output.WriteRawTag(10);
2024-11-23 14:08:04 +08:00
output.WriteString(RoomId);
2024-11-07 22:02:39 +08:00
}
2024-11-23 14:08:04 +08:00
if (Type != 0) {
output.WriteRawTag(16);
output.WriteInt32(Type);
2024-11-07 22:02:39 +08:00
}
2024-11-23 14:08:04 +08:00
if (RoleId.Length != 0) {
2024-11-07 22:02:39 +08:00
output.WriteRawTag(26);
2024-11-23 14:08:04 +08:00
output.WriteString(RoleId);
2024-11-07 22:02:39 +08:00
}
2024-11-23 14:08:04 +08:00
if (Cmd.Length != 0) {
output.WriteRawTag(34);
output.WriteString(Cmd);
2024-11-07 22:02:39 +08:00
}
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) {
2024-11-23 14:08:04 +08:00
if (RoomId.Length != 0) {
2024-11-07 22:02:39 +08:00
output.WriteRawTag(10);
2024-11-23 14:08:04 +08:00
output.WriteString(RoomId);
2024-11-07 22:02:39 +08:00
}
2024-11-23 14:08:04 +08:00
if (Type != 0) {
output.WriteRawTag(16);
output.WriteInt32(Type);
2024-11-07 22:02:39 +08:00
}
2024-11-23 14:08:04 +08:00
if (RoleId.Length != 0) {
2024-11-07 22:02:39 +08:00
output.WriteRawTag(26);
2024-11-23 14:08:04 +08:00
output.WriteString(RoleId);
2024-11-07 22:02:39 +08:00
}
2024-11-23 14:08:04 +08:00
if (Cmd.Length != 0) {
output.WriteRawTag(34);
output.WriteString(Cmd);
2024-11-07 22:02:39 +08:00
}
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;
2024-11-23 14:08:04 +08:00
if (RoomId.Length != 0) {
size += 1 + pb::CodedOutputStream.ComputeStringSize(RoomId);
2024-11-07 22:02:39 +08:00
}
2024-11-23 14:08:04 +08:00
if (Type != 0) {
size += 1 + pb::CodedOutputStream.ComputeInt32Size(Type);
2024-11-07 22:02:39 +08:00
}
2024-11-23 14:08:04 +08:00
if (RoleId.Length != 0) {
size += 1 + pb::CodedOutputStream.ComputeStringSize(RoleId);
2024-11-07 22:02:39 +08:00
}
2024-11-23 14:08:04 +08:00
if (Cmd.Length != 0) {
size += 1 + pb::CodedOutputStream.ComputeStringSize(Cmd);
2024-11-07 22:02:39 +08:00
}
if (_unknownFields != null) {
size += _unknownFields.CalculateSize();
}
return size;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public void MergeFrom(MessageBroadcastRequest other) {
2024-11-07 22:02:39 +08:00
if (other == null) {
return;
}
2024-11-23 14:08:04 +08:00
if (other.RoomId.Length != 0) {
RoomId = other.RoomId;
2024-11-07 22:02:39 +08:00
}
2024-11-23 14:08:04 +08:00
if (other.Type != 0) {
Type = other.Type;
2024-11-07 22:02:39 +08:00
}
2024-11-23 14:08:04 +08:00
if (other.RoleId.Length != 0) {
RoleId = other.RoleId;
2024-11-07 22:02:39 +08:00
}
2024-11-23 14:08:04 +08:00
if (other.Cmd.Length != 0) {
Cmd = other.Cmd;
2024-11-07 22:02:39 +08:00
}
_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) {
if ((tag & 7) == 4) {
// Abort on any end group tag.
return;
}
switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
case 10: {
2024-11-23 14:08:04 +08:00
RoomId = input.ReadString();
2024-11-07 22:02:39 +08:00
break;
}
2024-11-23 14:08:04 +08:00
case 16: {
Type = input.ReadInt32();
2024-11-07 22:02:39 +08:00
break;
}
case 26: {
2024-11-23 14:08:04 +08:00
RoleId = input.ReadString();
2024-11-07 22:02:39 +08:00
break;
}
2024-11-23 14:08:04 +08:00
case 34: {
Cmd = input.ReadString();
2024-11-07 22:02:39 +08:00
break;
}
}
}
#endif
2024-11-23 14:08:04 +08:00
}
2024-11-07 22:02:39 +08:00
#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) {
if ((tag & 7) == 4) {
// Abort on any end group tag.
return;
}
switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
case 10: {
2024-11-23 14:08:04 +08:00
RoomId = input.ReadString();
2024-11-07 22:02:39 +08:00
break;
}
2024-11-23 14:08:04 +08:00
case 16: {
Type = input.ReadInt32();
2024-11-07 22:02:39 +08:00
break;
}
case 26: {
2024-11-23 14:08:04 +08:00
RoleId = input.ReadString();
2024-11-07 22:02:39 +08:00
break;
}
2024-11-23 14:08:04 +08:00
case 34: {
Cmd = input.ReadString();
2024-11-07 22:02:39 +08:00
break;
}
}
}
}
#endif
}
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
2024-11-23 14:08:04 +08:00
public sealed partial class MessageBroadcastResponse : pb::IMessage<MessageBroadcastResponse>
2024-11-07 22:02:39 +08:00
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
#endif
{
2024-11-23 14:08:04 +08:00
private static readonly pb::MessageParser<MessageBroadcastResponse> _parser = new pb::MessageParser<MessageBroadcastResponse>(() => new MessageBroadcastResponse());
2024-11-07 22:02:39 +08:00
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public static pb::MessageParser<MessageBroadcastResponse> Parser { get { return _parser; } }
2024-11-07 22:02:39 +08:00
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
2024-11-23 14:08:04 +08:00
get { return global::MessageBroadcastReflection.Descriptor.MessageTypes[1]; }
2024-11-07 22:02:39 +08:00
}
[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)]
2024-11-23 14:08:04 +08:00
public MessageBroadcastResponse() {
2024-11-07 22:02:39 +08:00
OnConstruction();
}
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public MessageBroadcastResponse(MessageBroadcastResponse other) : this() {
2024-11-07 22:02:39 +08:00
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public MessageBroadcastResponse Clone() {
return new MessageBroadcastResponse(this);
2024-11-07 22:02:39 +08:00
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
2024-11-23 14:08:04 +08:00
return Equals(other as MessageBroadcastResponse);
2024-11-07 22:02:39 +08:00
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public bool Equals(MessageBroadcastResponse other) {
2024-11-07 22:02:39 +08:00
if (ReferenceEquals(other, null)) {
return false;
}
if (ReferenceEquals(other, this)) {
return true;
}
return Equals(_unknownFields, other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
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 (_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 (_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 (_unknownFields != null) {
size += _unknownFields.CalculateSize();
}
return size;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2024-11-23 14:08:04 +08:00
public void MergeFrom(MessageBroadcastResponse other) {
2024-11-07 22:02:39 +08:00
if (other == null) {
return;
}
_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) {
if ((tag & 7) == 4) {
// Abort on any end group tag.
return;
}
switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
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) {
if ((tag & 7) == 4) {
// Abort on any end group tag.
return;
}
switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
}
}
}
#endif
}
#endregion
#endregion Designer generated code