Exemplo n.º 1
0
 public static GetChannelIdRequest Deserialize(Stream stream, GetChannelIdRequest 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");
 }
Exemplo n.º 2
0
        public static GetChannelIdRequest DeserializeLengthDelimited(Stream stream, GetChannelIdRequest instance)
        {
            long num = (long)((ulong)ProtocolParser.ReadUInt32(stream));

            num += stream.Position;
            return(GetChannelIdRequest.Deserialize(stream, instance, num));
        }
Exemplo n.º 3
0
        public static GetChannelIdRequest DeserializeLengthDelimited(Stream stream)
        {
            GetChannelIdRequest getChannelIdRequest = new GetChannelIdRequest();

            GetChannelIdRequest.DeserializeLengthDelimited(stream, getChannelIdRequest);
            return(getChannelIdRequest);
        }
Exemplo n.º 4
0
 public static void Serialize(Stream stream, GetChannelIdRequest instance)
 {
 }
Exemplo n.º 5
0
 public void Serialize(Stream stream)
 {
     GetChannelIdRequest.Serialize(stream, this);
 }
Exemplo n.º 6
0
 public static GetChannelIdRequest Deserialize(Stream stream, GetChannelIdRequest instance)
 {
     return(GetChannelIdRequest.Deserialize(stream, instance, -1L));
 }