public static CreateChannelResponse DeserializeLengthDelimited(Stream stream)
        {
            CreateChannelResponse createChannelResponse = new CreateChannelResponse();

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

            num += stream.Position;
            return(CreateChannelResponse.Deserialize(stream, instance, num));
        }
 public static void Serialize(Stream stream, CreateChannelResponse instance)
 {
     stream.WriteByte(8);
     ProtocolParser.WriteUInt64(stream, instance.ObjectId);
     if (instance.HasChannelId)
     {
         stream.WriteByte(18);
         ProtocolParser.WriteUInt32(stream, instance.ChannelId.GetSerializedSize());
         EntityId.Serialize(stream, instance.ChannelId);
     }
 }
Esempio n. 4
0
 public static CreateChannelResponse Deserialize(Stream stream, CreateChannelResponse 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)
             {
                 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.ChannelId == null)
                 {
                     instance.ChannelId = EntityId.DeserializeLengthDelimited(stream);
                 }
                 else
                 {
                     EntityId.DeserializeLengthDelimited(stream, instance.ChannelId);
                 }
             }
             else
             {
                 instance.ObjectId = ProtocolParser.ReadUInt64(stream);
             }
         }
     }
     if (stream.get_Position() == limit)
     {
         return(instance);
     }
     throw new ProtocolBufferException("Read past max limit");
 }
Esempio n. 5
0
 public static CreateChannelResponse Deserialize(Stream stream, CreateChannelResponse 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.ObjectId = ProtocolParser.ReadUInt64(stream);
             }
             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.ChannelId != null)
             {
                 EntityId.DeserializeLengthDelimited(stream, instance.ChannelId);
             }
             else
             {
                 instance.ChannelId = EntityId.DeserializeLengthDelimited(stream);
             }
         }
         else
         {
             if (stream.Position != limit)
             {
                 throw new ProtocolBufferException("Read past max limit");
             }
             break;
         }
     }
     return(instance);
 }
Esempio n. 6
0
        public override bool Equals(object obj)
        {
            CreateChannelResponse createChannelResponse = obj as CreateChannelResponse;

            if (createChannelResponse == null)
            {
                return(false);
            }
            if (!this.ObjectId.Equals(createChannelResponse.ObjectId))
            {
                return(false);
            }
            if (this.HasChannelId == createChannelResponse.HasChannelId && (!this.HasChannelId || this.ChannelId.Equals(createChannelResponse.ChannelId)))
            {
                return(true);
            }
            return(false);
        }
 public static CreateChannelResponse Deserialize(Stream stream, CreateChannelResponse instance)
 {
     return(CreateChannelResponse.Deserialize(stream, instance, -1L));
 }
 public void Deserialize(Stream stream)
 {
     CreateChannelResponse.Deserialize(stream, this);
 }
        public override bool Equals(object obj)
        {
            CreateChannelResponse createChannelResponse = obj as CreateChannelResponse;

            return(createChannelResponse != null && this.ObjectId.Equals(createChannelResponse.ObjectId) && this.HasChannelId == createChannelResponse.HasChannelId && (!this.HasChannelId || this.ChannelId.Equals(createChannelResponse.ChannelId)));
        }