Example #1
0
        public static NORESPONSE DeserializeLengthDelimited(Stream stream, NORESPONSE instance)
        {
            long num = (long)((ulong)ProtocolParser.ReadUInt32(stream));

            num += stream.Position;
            return(NORESPONSE.Deserialize(stream, instance, num));
        }
Example #2
0
 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");
 }
Example #3
0
        public static NORESPONSE DeserializeLengthDelimited(Stream stream)
        {
            NORESPONSE noresponse = new NORESPONSE();

            NORESPONSE.DeserializeLengthDelimited(stream, noresponse);
            return(noresponse);
        }
Example #4
0
        public static NORESPONSE DeserializeLengthDelimited(Stream stream)
        {
            NORESPONSE nORESPONSE = new NORESPONSE();

            NORESPONSE.DeserializeLengthDelimited(stream, nORESPONSE);
            return(nORESPONSE);
        }
Example #5
0
 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);
 }
Example #6
0
 public static void Serialize(Stream stream, NORESPONSE instance)
 {
 }
Example #7
0
 public void Serialize(Stream stream)
 {
     NORESPONSE.Serialize(stream, this);
 }
Example #8
0
 public static NORESPONSE Deserialize(Stream stream, NORESPONSE instance)
 {
     return(NORESPONSE.Deserialize(stream, instance, -1L));
 }
Example #9
0
 public void Deserialize(Stream stream)
 {
     NORESPONSE.Deserialize(stream, this);
 }