public static NORESPONSE DeserializeLengthDelimited(Stream stream, NORESPONSE instance) { long num = (long)((ulong)ProtocolParser.ReadUInt32(stream)); num += stream.Position; return(NORESPONSE.Deserialize(stream, instance, num)); }
public static NORESPONSE Deserialize(Stream stream, NORESPONSE instance, long limit) { while (limit < 0L || stream.Position < limit) { int num = stream.ReadByte(); if (num == -1) { if (limit >= 0L) { throw new EndOfStreamException(); } return(instance); } else { 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); } } if (stream.Position == limit) { return(instance); } throw new ProtocolBufferException("Read past max limit"); }
public static NORESPONSE DeserializeLengthDelimited(Stream stream) { NORESPONSE noresponse = new NORESPONSE(); NORESPONSE.DeserializeLengthDelimited(stream, noresponse); return(noresponse); }
public static NORESPONSE DeserializeLengthDelimited(Stream stream) { NORESPONSE nORESPONSE = new NORESPONSE(); NORESPONSE.DeserializeLengthDelimited(stream, nORESPONSE); return(nORESPONSE); }
public static NORESPONSE Deserialize(Stream stream, NORESPONSE instance, long limit) { while (true) { if (limit < (long)0 || stream.Position < limit) { int num = stream.ReadByte(); if (num != -1) { 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 (limit >= (long)0) { throw new EndOfStreamException(); } break; } } else { if (stream.Position != limit) { throw new ProtocolBufferException("Read past max limit"); } break; } } return(instance); }
public static void Serialize(Stream stream, NORESPONSE instance) { }
public void Serialize(Stream stream) { NORESPONSE.Serialize(stream, this); }
public static NORESPONSE Deserialize(Stream stream, NORESPONSE instance) { return(NORESPONSE.Deserialize(stream, instance, -1L)); }
public void Deserialize(Stream stream) { NORESPONSE.Deserialize(stream, this); }