コード例 #1
0
 public static DisconnectRequest Deserialize(Stream stream, DisconnectRequest 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 == 8)
             {
                 instance.ErrorCode = ProtocolParser.ReadUInt32(stream);
             }
             else
             {
                 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 (stream.Position != limit)
             {
                 throw new ProtocolBufferException("Read past max limit");
             }
             break;
         }
     }
     return(instance);
 }
コード例 #2
0
 public static DisconnectRequest Deserialize(Stream stream, DisconnectRequest 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 != 8)
             {
                 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
             {
                 instance.ErrorCode = ProtocolParser.ReadUInt32(stream);
             }
         }
     }
     if (stream.get_Position() == limit)
     {
         return(instance);
     }
     throw new ProtocolBufferException("Read past max limit");
 }
コード例 #3
0
 public static DisconnectRequest Deserialize(Stream stream, DisconnectRequest instance)
 {
     return(DisconnectRequest.Deserialize(stream, instance, -1L));
 }
コード例 #4
0
 public void Deserialize(Stream stream)
 {
     DisconnectRequest.Deserialize(stream, this);
 }
コード例 #5
0
        public override bool Equals(object obj)
        {
            DisconnectRequest disconnectRequest = obj as DisconnectRequest;

            return(disconnectRequest != null && this.ErrorCode.Equals(disconnectRequest.ErrorCode));
        }
コード例 #6
0
 public static void Serialize(Stream stream, DisconnectRequest instance)
 {
     stream.WriteByte(8);
     ProtocolParser.WriteUInt32(stream, instance.ErrorCode);
 }