Files
RecRoom.Protobuf/DEPRECATEDNodePortData.cs
2026-05-10 13:39:01 -07:00

330 lines
12 KiB
C#

// <auto-generated>
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: circuits_v2/deprecated/DEPRECATED_node_port_data.proto
// </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;
namespace CircuitsV2.Protobuf {
/// <summary>Holder for reflection information generated from circuits_v2/deprecated/DEPRECATED_node_port_data.proto</summary>
public static partial class DEPRECATEDNodePortDataReflection {
#region Descriptor
/// <summary>File descriptor for circuits_v2/deprecated/DEPRECATED_node_port_data.proto</summary>
public static pbr::FileDescriptor Descriptor {
get { return descriptor; }
}
private static pbr::FileDescriptor descriptor;
static DEPRECATEDNodePortDataReflection() {
byte[] descriptorData = global::System.Convert.FromBase64String(
string.Concat(
"CjZjaXJjdWl0c192Mi9kZXByZWNhdGVkL0RFUFJFQ0FURURfbm9kZV9wb3J0",
"X2RhdGEucHJvdG8SC2NpcmN1aXRzX3YyGjljaXJjdWl0c192Mi9kZXByZWNh",
"dGVkL0RFUFJFQ0FURURfY2lyY3VpdF90eXBlX2RhdGEucHJvdG8igAEKF0RF",
"UFJFQ0FURURfTm9kZVBvcnREYXRhEg8KB3BvcnRfaWQYASABKAwSEAoIcG9y",
"dE5hbWUYAiABKAkSQgoRZ2VuZXJpY19wb3J0X3R5cGUYAyABKAsyJy5jaXJj",
"dWl0c192Mi5ERVBSRUNBVEVEX0NpcmN1aXRUeXBlRGF0YUIWqgITQ2lyY3Vp",
"dHNWMi5Qcm90b2J1ZmIGcHJvdG8z"));
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
new pbr::FileDescriptor[] { global::CircuitsV2.Protobuf.DEPRECATEDCircuitTypeDataReflection.Descriptor, },
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
new pbr::GeneratedClrTypeInfo(typeof(global::CircuitsV2.Protobuf.DEPRECATED_NodePortData), global::CircuitsV2.Protobuf.DEPRECATED_NodePortData.Parser, new[]{ "PortId", "PortName", "GenericPortType" }, null, null, null, null)
}));
}
#endregion
}
#region Messages
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class DEPRECATED_NodePortData : pb::IMessage<DEPRECATED_NodePortData>
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
#endif
{
private static readonly pb::MessageParser<DEPRECATED_NodePortData> _parser = new pb::MessageParser<DEPRECATED_NodePortData>(() => new DEPRECATED_NodePortData());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser<DEPRECATED_NodePortData> Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::CircuitsV2.Protobuf.DEPRECATEDNodePortDataReflection.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 DEPRECATED_NodePortData() {
OnConstruction();
}
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DEPRECATED_NodePortData(DEPRECATED_NodePortData other) : this() {
portId_ = other.portId_;
portName_ = other.portName_;
genericPortType_ = other.genericPortType_ != null ? other.genericPortType_.Clone() : null;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DEPRECATED_NodePortData Clone() {
return new DEPRECATED_NodePortData(this);
}
/// <summary>Field number for the "port_id" field.</summary>
public const int PortIdFieldNumber = 1;
private pb::ByteString portId_ = pb::ByteString.Empty;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public pb::ByteString PortId {
get { return portId_; }
set {
portId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
}
}
/// <summary>Field number for the "portName" field.</summary>
public const int PortNameFieldNumber = 2;
private string portName_ = "";
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public string PortName {
get { return portName_; }
set {
portName_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
}
}
/// <summary>Field number for the "generic_port_type" field.</summary>
public const int GenericPortTypeFieldNumber = 3;
private global::CircuitsV2.Protobuf.DEPRECATED_CircuitTypeData genericPortType_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public global::CircuitsV2.Protobuf.DEPRECATED_CircuitTypeData GenericPortType {
get { return genericPortType_; }
set {
genericPortType_ = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as DEPRECATED_NodePortData);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(DEPRECATED_NodePortData other) {
if (ReferenceEquals(other, null)) {
return false;
}
if (ReferenceEquals(other, this)) {
return true;
}
if (PortId != other.PortId) return false;
if (PortName != other.PortName) return false;
if (!object.Equals(GenericPortType, other.GenericPortType)) 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 (PortId.Length != 0) hash ^= PortId.GetHashCode();
if (PortName.Length != 0) hash ^= PortName.GetHashCode();
if (genericPortType_ != null) hash ^= GenericPortType.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 (PortId.Length != 0) {
output.WriteRawTag(10);
output.WriteBytes(PortId);
}
if (PortName.Length != 0) {
output.WriteRawTag(18);
output.WriteString(PortName);
}
if (genericPortType_ != null) {
output.WriteRawTag(26);
output.WriteMessage(GenericPortType);
}
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 (PortId.Length != 0) {
output.WriteRawTag(10);
output.WriteBytes(PortId);
}
if (PortName.Length != 0) {
output.WriteRawTag(18);
output.WriteString(PortName);
}
if (genericPortType_ != null) {
output.WriteRawTag(26);
output.WriteMessage(GenericPortType);
}
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 (PortId.Length != 0) {
size += 1 + pb::CodedOutputStream.ComputeBytesSize(PortId);
}
if (PortName.Length != 0) {
size += 1 + pb::CodedOutputStream.ComputeStringSize(PortName);
}
if (genericPortType_ != null) {
size += 1 + pb::CodedOutputStream.ComputeMessageSize(GenericPortType);
}
if (_unknownFields != null) {
size += _unknownFields.CalculateSize();
}
return size;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(DEPRECATED_NodePortData other) {
if (other == null) {
return;
}
if (other.PortId.Length != 0) {
PortId = other.PortId;
}
if (other.PortName.Length != 0) {
PortName = other.PortName;
}
if (other.genericPortType_ != null) {
if (genericPortType_ == null) {
GenericPortType = new global::CircuitsV2.Protobuf.DEPRECATED_CircuitTypeData();
}
GenericPortType.MergeFrom(other.GenericPortType);
}
_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: {
PortId = input.ReadBytes();
break;
}
case 18: {
PortName = input.ReadString();
break;
}
case 26: {
if (genericPortType_ == null) {
GenericPortType = new global::CircuitsV2.Protobuf.DEPRECATED_CircuitTypeData();
}
input.ReadMessage(GenericPortType);
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;
case 10: {
PortId = input.ReadBytes();
break;
}
case 18: {
PortName = input.ReadString();
break;
}
case 26: {
if (genericPortType_ == null) {
GenericPortType = new global::CircuitsV2.Protobuf.DEPRECATED_CircuitTypeData();
}
input.ReadMessage(GenericPortType);
break;
}
}
}
}
#endif
}
#endregion
}
#endregion Designer generated code