Example #1
0
        public static IncrementChannelCountResponse DeserializeLengthDelimited(Stream stream, IncrementChannelCountResponse instance)
        {
            long num = (long)((ulong)ProtocolParser.ReadUInt32(stream));

            num += stream.Position;
            return(IncrementChannelCountResponse.Deserialize(stream, instance, num));
        }
Example #2
0
        public static IncrementChannelCountResponse DeserializeLengthDelimited(Stream stream)
        {
            IncrementChannelCountResponse incrementChannelCountResponse = new IncrementChannelCountResponse();

            IncrementChannelCountResponse.DeserializeLengthDelimited(stream, incrementChannelCountResponse);
            return(incrementChannelCountResponse);
        }
Example #3
0
 public static void Serialize(Stream stream, IncrementChannelCountResponse instance)
 {
     if (instance.ReservationTokens.Count > 0)
     {
         foreach (ulong val in instance.ReservationTokens)
         {
             stream.WriteByte(8);
             ProtocolParser.WriteUInt64(stream, val);
         }
     }
 }
 public static void Serialize(Stream stream, IncrementChannelCountResponse instance)
 {
     if (instance.ReservationTokens.get_Count() > 0)
     {
         using (List <ulong> .Enumerator enumerator = instance.ReservationTokens.GetEnumerator())
         {
             while (enumerator.MoveNext())
             {
                 ulong current = enumerator.get_Current();
                 stream.WriteByte(8);
                 ProtocolParser.WriteUInt64(stream, current);
             }
         }
     }
 }
Example #5
0
 public static IncrementChannelCountResponse Deserialize(Stream stream, IncrementChannelCountResponse instance, long limit)
 {
     if (instance.ReservationTokens == null)
     {
         instance.ReservationTokens = new List <ulong>();
     }
     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.ReservationTokens.Add(ProtocolParser.ReadUInt64(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);
 }
 public static IncrementChannelCountResponse Deserialize(Stream stream, IncrementChannelCountResponse instance, long limit)
 {
     if (instance.ReservationTokens == null)
     {
         instance.ReservationTokens = new List <ulong>();
     }
     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.ReservationTokens.Add(ProtocolParser.ReadUInt64(stream));
             }
         }
     }
     if (stream.get_Position() == limit)
     {
         return(instance);
     }
     throw new ProtocolBufferException("Read past max limit");
 }
Example #7
0
        public override bool Equals(object obj)
        {
            IncrementChannelCountResponse incrementChannelCountResponse = obj as IncrementChannelCountResponse;

            if (incrementChannelCountResponse == null)
            {
                return(false);
            }
            if (this.ReservationTokens.Count != incrementChannelCountResponse.ReservationTokens.Count)
            {
                return(false);
            }
            for (int i = 0; i < this.ReservationTokens.Count; i++)
            {
                if (!this.ReservationTokens[i].Equals(incrementChannelCountResponse.ReservationTokens[i]))
                {
                    return(false);
                }
            }
            return(true);
        }
Example #8
0
 public void Deserialize(Stream stream)
 {
     IncrementChannelCountResponse.Deserialize(stream, this);
 }
Example #9
0
 public static IncrementChannelCountResponse Deserialize(Stream stream, IncrementChannelCountResponse instance)
 {
     return(IncrementChannelCountResponse.Deserialize(stream, instance, -1L));
 }