示例#1
0
 public static LogonUpdateRequest Deserialize(Stream stream, LogonUpdateRequest 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 if (num != 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.Position == limit)
     {
         return(instance);
     }
     throw new ProtocolBufferException("Read past max limit");
 }
示例#2
0
        public static LogonUpdateRequest DeserializeLengthDelimited(Stream stream)
        {
            LogonUpdateRequest logonUpdateRequest = new LogonUpdateRequest();

            LogonUpdateRequest.DeserializeLengthDelimited(stream, logonUpdateRequest);
            return(logonUpdateRequest);
        }
示例#3
0
        public static LogonUpdateRequest DeserializeLengthDelimited(Stream stream, LogonUpdateRequest instance)
        {
            long num = (long)((ulong)ProtocolParser.ReadUInt32(stream));

            num += stream.Position;
            return(LogonUpdateRequest.Deserialize(stream, instance, num));
        }
        public override bool Equals(object obj)
        {
            LogonUpdateRequest logonUpdateRequest = obj as LogonUpdateRequest;

            if (logonUpdateRequest == null)
            {
                return(false);
            }
            if (!this.ErrorCode.Equals(logonUpdateRequest.ErrorCode))
            {
                return(false);
            }
            return(true);
        }
示例#5
0
 public static LogonUpdateRequest Deserialize(Stream stream, LogonUpdateRequest instance)
 {
     return(LogonUpdateRequest.Deserialize(stream, instance, -1L));
 }
示例#6
0
 public void Deserialize(Stream stream)
 {
     LogonUpdateRequest.Deserialize(stream, this);
 }
示例#7
0
        public override bool Equals(object obj)
        {
            LogonUpdateRequest logonUpdateRequest = obj as LogonUpdateRequest;

            return(logonUpdateRequest != null && this.ErrorCode.Equals(logonUpdateRequest.ErrorCode));
        }
示例#8
0
 public static void Serialize(Stream stream, LogonUpdateRequest instance)
 {
     stream.WriteByte(8);
     ProtocolParser.WriteUInt32(stream, instance.ErrorCode);
 }