Пример #1
0
 public static PoolStateRequest Deserialize(Stream stream, PoolStateRequest 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");
 }
Пример #2
0
        public static PoolStateRequest DeserializeLengthDelimited(Stream stream, PoolStateRequest instance)
        {
            long num = (long)((ulong)ProtocolParser.ReadUInt32(stream));

            num += stream.Position;
            return(PoolStateRequest.Deserialize(stream, instance, num));
        }
Пример #3
0
        public static PoolStateRequest DeserializeLengthDelimited(Stream stream)
        {
            PoolStateRequest poolStateRequest = new PoolStateRequest();

            PoolStateRequest.DeserializeLengthDelimited(stream, poolStateRequest);
            return(poolStateRequest);
        }
 public static PoolStateRequest Deserialize(Stream stream, PoolStateRequest 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);
 }
Пример #5
0
 public static void Serialize(Stream stream, PoolStateRequest instance)
 {
 }
Пример #6
0
 public void Serialize(Stream stream)
 {
     PoolStateRequest.Serialize(stream, this);
 }
Пример #7
0
 public static PoolStateRequest Deserialize(Stream stream, PoolStateRequest instance)
 {
     return(PoolStateRequest.Deserialize(stream, instance, -1L));
 }