Exemple #1
0
        public static SelectGameAccountRequest DeserializeLengthDelimited(Stream stream)
        {
            SelectGameAccountRequest selectGameAccountRequest = new SelectGameAccountRequest();

            SelectGameAccountRequest.DeserializeLengthDelimited(stream, selectGameAccountRequest);
            return(selectGameAccountRequest);
        }
Exemple #2
0
        public static SelectGameAccountRequest DeserializeLengthDelimited(Stream stream, SelectGameAccountRequest instance)
        {
            long num = (long)((ulong)ProtocolParser.ReadUInt32(stream));

            num += stream.Position;
            return(SelectGameAccountRequest.Deserialize(stream, instance, num));
        }
Exemple #3
0
 public static void Serialize(Stream stream, SelectGameAccountRequest instance)
 {
     if (instance.GameAccount == null)
     {
         throw new ArgumentNullException("GameAccount", "Required by proto specification.");
     }
     stream.WriteByte(10);
     ProtocolParser.WriteUInt32(stream, instance.GameAccount.GetSerializedSize());
     EntityId.Serialize(stream, instance.GameAccount);
 }
        public override bool Equals(object obj)
        {
            SelectGameAccountRequest selectGameAccountRequest = obj as SelectGameAccountRequest;

            if (selectGameAccountRequest == null)
            {
                return(false);
            }
            if (!this.GameAccount.Equals(selectGameAccountRequest.GameAccount))
            {
                return(false);
            }
            return(true);
        }
 public static SelectGameAccountRequest Deserialize(Stream stream, SelectGameAccountRequest 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 != 10)
             {
                 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.GameAccount != null)
             {
                 EntityId.DeserializeLengthDelimited(stream, instance.GameAccount);
             }
             else
             {
                 instance.GameAccount = EntityId.DeserializeLengthDelimited(stream);
             }
         }
         else
         {
             if (stream.Position != limit)
             {
                 throw new ProtocolBufferException("Read past max limit");
             }
             break;
         }
     }
     return(instance);
 }
 public static SelectGameAccountRequest Deserialize(Stream stream, SelectGameAccountRequest 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 != 10)
             {
                 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.GameAccount == null)
             {
                 instance.GameAccount = EntityId.DeserializeLengthDelimited(stream);
             }
             else
             {
                 EntityId.DeserializeLengthDelimited(stream, instance.GameAccount);
             }
         }
     }
     if (stream.get_Position() == limit)
     {
         return(instance);
     }
     throw new ProtocolBufferException("Read past max limit");
 }
Exemple #7
0
 public static SelectGameAccountRequest Deserialize(Stream stream, SelectGameAccountRequest instance)
 {
     return(SelectGameAccountRequest.Deserialize(stream, instance, -1L));
 }
Exemple #8
0
 public void Deserialize(Stream stream)
 {
     SelectGameAccountRequest.Deserialize(stream, this);
 }
Exemple #9
0
        public override bool Equals(object obj)
        {
            SelectGameAccountRequest selectGameAccountRequest = obj as SelectGameAccountRequest;

            return(selectGameAccountRequest != null && this.GameAccount.Equals(selectGameAccountRequest.GameAccount));
        }