public static GetChannelIdResponse DeserializeLengthDelimited(Stream stream) { GetChannelIdResponse getChannelIdResponse = new GetChannelIdResponse(); GetChannelIdResponse.DeserializeLengthDelimited(stream, getChannelIdResponse); return(getChannelIdResponse); }
public static GetChannelIdResponse DeserializeLengthDelimited(Stream stream, GetChannelIdResponse instance) { long num = (long)((ulong)ProtocolParser.ReadUInt32(stream)); num += stream.Position; return(GetChannelIdResponse.Deserialize(stream, instance, num)); }
public static void Serialize(Stream stream, GetChannelIdResponse instance) { if (instance.HasChannelId) { stream.WriteByte(10); ProtocolParser.WriteUInt32(stream, instance.ChannelId.GetSerializedSize()); EntityId.Serialize(stream, instance.ChannelId); } }
public override bool Equals(object obj) { GetChannelIdResponse getChannelIdResponse = obj as GetChannelIdResponse; if (getChannelIdResponse == null) { return(false); } if (this.HasChannelId == getChannelIdResponse.HasChannelId && (!this.HasChannelId || this.ChannelId.Equals(getChannelIdResponse.ChannelId))) { return(true); } return(false); }
public static GetChannelIdResponse Deserialize(Stream stream, GetChannelIdResponse instance, long limit) { while (true) { if (limit < (long)0 || stream.Position < limit) { int num = stream.ReadByte(); if (num == -1) { if (limit >= (long)0) { throw new EndOfStreamException(); } break; } else if (num != 10) { Key key = ProtocolParser.ReadKey((byte)num, stream); if (key.Field == 0) { throw new ProtocolBufferException("Invalid field id: 0, something went wrong in the stream"); } ProtocolParser.SkipKey(stream, key); } else if (instance.ChannelId != null) { EntityId.DeserializeLengthDelimited(stream, instance.ChannelId); } else { instance.ChannelId = EntityId.DeserializeLengthDelimited(stream); } } else { if (stream.Position != limit) { throw new ProtocolBufferException("Read past max limit"); } break; } } return(instance); }
public static GetChannelIdResponse Deserialize(Stream stream, GetChannelIdResponse instance, long limit) { while (limit < 0L || stream.get_Position() < limit) { int num = stream.ReadByte(); if (num == -1) { if (limit >= 0L) { throw new EndOfStreamException(); } return(instance); } else { int num2 = num; if (num2 != 10) { Key key = ProtocolParser.ReadKey((byte)num, stream); uint field = key.Field; if (field == 0u) { throw new ProtocolBufferException("Invalid field id: 0, something went wrong in the stream"); } ProtocolParser.SkipKey(stream, key); } else if (instance.ChannelId == null) { instance.ChannelId = EntityId.DeserializeLengthDelimited(stream); } else { EntityId.DeserializeLengthDelimited(stream, instance.ChannelId); } } } if (stream.get_Position() == limit) { return(instance); } throw new ProtocolBufferException("Read past max limit"); }
public static GetChannelIdResponse Deserialize(Stream stream, GetChannelIdResponse instance) { return(GetChannelIdResponse.Deserialize(stream, instance, -1L)); }
public void Deserialize(Stream stream) { GetChannelIdResponse.Deserialize(stream, this); }
public override bool Equals(object obj) { GetChannelIdResponse getChannelIdResponse = obj as GetChannelIdResponse; return(getChannelIdResponse != null && this.HasChannelId == getChannelIdResponse.HasChannelId && (!this.HasChannelId || this.ChannelId.Equals(getChannelIdResponse.ChannelId))); }