public static GetGameSessionInfoResponse DeserializeLengthDelimited(Stream stream)
        {
            GetGameSessionInfoResponse getGameSessionInfoResponse = new GetGameSessionInfoResponse();

            GetGameSessionInfoResponse.DeserializeLengthDelimited(stream, getGameSessionInfoResponse);
            return(getGameSessionInfoResponse);
        }
        public static GetGameSessionInfoResponse DeserializeLengthDelimited(Stream stream, GetGameSessionInfoResponse instance)
        {
            long num = (long)((ulong)ProtocolParser.ReadUInt32(stream));

            num += stream.Position;
            return(GetGameSessionInfoResponse.Deserialize(stream, instance, num));
        }
 public static void Serialize(Stream stream, GetGameSessionInfoResponse instance)
 {
     if (instance.HasSessionInfo)
     {
         stream.WriteByte(18);
         ProtocolParser.WriteUInt32(stream, instance.SessionInfo.GetSerializedSize());
         GameSessionInfo.Serialize(stream, instance.SessionInfo);
     }
 }
Пример #4
0
        public override bool Equals(object obj)
        {
            GetGameSessionInfoResponse getGameSessionInfoResponse = obj as GetGameSessionInfoResponse;

            if (getGameSessionInfoResponse == null)
            {
                return(false);
            }
            if (this.HasSessionInfo == getGameSessionInfoResponse.HasSessionInfo && (!this.HasSessionInfo || this.SessionInfo.Equals(getGameSessionInfoResponse.SessionInfo)))
            {
                return(true);
            }
            return(false);
        }
Пример #5
0
 public static GetGameSessionInfoResponse Deserialize(Stream stream, GetGameSessionInfoResponse 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 != 18)
             {
                 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 (instance.SessionInfo != null)
             {
                 GameSessionInfo.DeserializeLengthDelimited(stream, instance.SessionInfo);
             }
             else
             {
                 instance.SessionInfo = GameSessionInfo.DeserializeLengthDelimited(stream);
             }
         }
         else
         {
             if (stream.Position != limit)
             {
                 throw new ProtocolBufferException("Read past max limit");
             }
             break;
         }
     }
     return(instance);
 }
Пример #6
0
 public static GetGameSessionInfoResponse Deserialize(Stream stream, GetGameSessionInfoResponse 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 != 18)
             {
                 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 if (instance.SessionInfo == null)
             {
                 instance.SessionInfo = GameSessionInfo.DeserializeLengthDelimited(stream);
             }
             else
             {
                 GameSessionInfo.DeserializeLengthDelimited(stream, instance.SessionInfo);
             }
         }
     }
     if (stream.get_Position() == limit)
     {
         return(instance);
     }
     throw new ProtocolBufferException("Read past max limit");
 }
 public static GetGameSessionInfoResponse Deserialize(Stream stream, GetGameSessionInfoResponse instance)
 {
     return(GetGameSessionInfoResponse.Deserialize(stream, instance, -1L));
 }
 public void Deserialize(Stream stream)
 {
     GetGameSessionInfoResponse.Deserialize(stream, this);
 }
        public override bool Equals(object obj)
        {
            GetGameSessionInfoResponse getGameSessionInfoResponse = obj as GetGameSessionInfoResponse;

            return(getGameSessionInfoResponse != null && this.HasSessionInfo == getGameSessionInfoResponse.HasSessionInfo && (!this.HasSessionInfo || this.SessionInfo.Equals(getGameSessionInfoResponse.SessionInfo)));
        }