public static GetChannelInfoResponse DeserializeLengthDelimited(Stream stream, GetChannelInfoResponse instance) { long position = (long)ProtocolParser.ReadUInt32(stream); position += stream.Position; return(GetChannelInfoResponse.Deserialize(stream, instance, position)); }
public static GetChannelInfoResponse DeserializeLengthDelimited(Stream stream, GetChannelInfoResponse instance) { long num = (long)((ulong)ProtocolParser.ReadUInt32(stream)); num += stream.get_Position(); return(GetChannelInfoResponse.Deserialize(stream, instance, num)); }
public static GetChannelInfoResponse DeserializeLengthDelimited(Stream stream) { GetChannelInfoResponse getChannelInfoResponse = new GetChannelInfoResponse(); GetChannelInfoResponse.DeserializeLengthDelimited(stream, getChannelInfoResponse); return(getChannelInfoResponse); }
public static void Serialize(Stream stream, GetChannelInfoResponse instance) { if (instance.HasChannelInfo) { stream.WriteByte(10); ProtocolParser.WriteUInt32(stream, instance.ChannelInfo.GetSerializedSize()); bnet.protocol.channel.ChannelInfo.Serialize(stream, instance.ChannelInfo); } }
public override bool Equals(object obj) { GetChannelInfoResponse getChannelInfoResponse = obj as GetChannelInfoResponse; if (getChannelInfoResponse == null) { return(false); } if (this.HasChannelInfo == getChannelInfoResponse.HasChannelInfo && (!this.HasChannelInfo || this.ChannelInfo.Equals(getChannelInfoResponse.ChannelInfo))) { return(true); } return(false); }
public static GetChannelInfoResponse Deserialize(Stream stream, GetChannelInfoResponse 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.ChannelInfo != null) { bnet.protocol.channel.ChannelInfo.DeserializeLengthDelimited(stream, instance.ChannelInfo); } else { instance.ChannelInfo = bnet.protocol.channel.ChannelInfo.DeserializeLengthDelimited(stream); } } else { if (stream.Position != limit) { throw new ProtocolBufferException("Read past max limit"); } break; } } return(instance); }
public static GetChannelInfoResponse Deserialize(Stream stream, GetChannelInfoResponse 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.ChannelInfo == null) { instance.ChannelInfo = ChannelInfo.DeserializeLengthDelimited(stream); } else { ChannelInfo.DeserializeLengthDelimited(stream, instance.ChannelInfo); } } } if (stream.get_Position() == limit) { return(instance); } throw new ProtocolBufferException("Read past max limit"); }
public static GetChannelInfoResponse Deserialize(Stream stream, GetChannelInfoResponse instance) { return(GetChannelInfoResponse.Deserialize(stream, instance, (long)-1)); }
public void Deserialize(Stream stream) { GetChannelInfoResponse.Deserialize(stream, this); }
public override bool Equals(object obj) { GetChannelInfoResponse getChannelInfoResponse = obj as GetChannelInfoResponse; return(getChannelInfoResponse != null && this.HasChannelInfo == getChannelInfoResponse.HasChannelInfo && (!this.HasChannelInfo || this.ChannelInfo.Equals(getChannelInfoResponse.ChannelInfo))); }