Exemplo n.º 1
0
        public static FindChannelRequest DeserializeLengthDelimited(Stream stream)
        {
            FindChannelRequest findChannelRequest = new FindChannelRequest();

            FindChannelRequest.DeserializeLengthDelimited(stream, findChannelRequest);
            return(findChannelRequest);
        }
Exemplo n.º 2
0
        public static FindChannelRequest DeserializeLengthDelimited(Stream stream, FindChannelRequest instance)
        {
            long num = (long)((ulong)ProtocolParser.ReadUInt32(stream));

            num += stream.get_Position();
            return(FindChannelRequest.Deserialize(stream, instance, num));
        }
        public static FindChannelRequest DeserializeLengthDelimited(Stream stream, FindChannelRequest instance)
        {
            long position = (long)ProtocolParser.ReadUInt32(stream);

            position += stream.Position;
            return(FindChannelRequest.Deserialize(stream, instance, position));
        }
 public static FindChannelRequest Deserialize(Stream stream, FindChannelRequest 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)
             {
                 if (instance.AgentIdentity != null)
                 {
                     Identity.DeserializeLengthDelimited(stream, instance.AgentIdentity);
                 }
                 else
                 {
                     instance.AgentIdentity = Identity.DeserializeLengthDelimited(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.Options != null)
             {
                 FindChannelOptions.DeserializeLengthDelimited(stream, instance.Options);
             }
             else
             {
                 instance.Options = FindChannelOptions.DeserializeLengthDelimited(stream);
             }
         }
         else
         {
             if (stream.Position != limit)
             {
                 throw new ProtocolBufferException("Read past max limit");
             }
             break;
         }
     }
     return(instance);
 }
Exemplo n.º 5
0
 public static FindChannelRequest Deserialize(Stream stream, FindChannelRequest 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)
             {
                 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.Options == null)
                 {
                     instance.Options = FindChannelOptions.DeserializeLengthDelimited(stream);
                 }
                 else
                 {
                     FindChannelOptions.DeserializeLengthDelimited(stream, instance.Options);
                 }
             }
             else if (instance.AgentIdentity == null)
             {
                 instance.AgentIdentity = Identity.DeserializeLengthDelimited(stream);
             }
             else
             {
                 Identity.DeserializeLengthDelimited(stream, instance.AgentIdentity);
             }
         }
     }
     if (stream.get_Position() == limit)
     {
         return(instance);
     }
     throw new ProtocolBufferException("Read past max limit");
 }
Exemplo n.º 6
0
 public static void Serialize(Stream stream, FindChannelRequest instance)
 {
     if (instance.HasAgentIdentity)
     {
         stream.WriteByte(10);
         ProtocolParser.WriteUInt32(stream, instance.AgentIdentity.GetSerializedSize());
         Identity.Serialize(stream, instance.AgentIdentity);
     }
     if (instance.Options == null)
     {
         throw new ArgumentNullException("Options", "Required by proto specification.");
     }
     stream.WriteByte(18);
     ProtocolParser.WriteUInt32(stream, instance.Options.GetSerializedSize());
     FindChannelOptions.Serialize(stream, instance.Options);
 }
        public override bool Equals(object obj)
        {
            FindChannelRequest findChannelRequest = obj as FindChannelRequest;

            if (findChannelRequest == null)
            {
                return(false);
            }
            if (this.HasAgentIdentity != findChannelRequest.HasAgentIdentity || this.HasAgentIdentity && !this.AgentIdentity.Equals(findChannelRequest.AgentIdentity))
            {
                return(false);
            }
            if (!this.Options.Equals(findChannelRequest.Options))
            {
                return(false);
            }
            return(true);
        }
Exemplo n.º 8
0
 public static FindChannelRequest Deserialize(Stream stream, FindChannelRequest instance)
 {
     return(FindChannelRequest.Deserialize(stream, instance, -1L));
 }
Exemplo n.º 9
0
 public void Deserialize(Stream stream)
 {
     FindChannelRequest.Deserialize(stream, this);
 }
Exemplo n.º 10
0
        public override bool Equals(object obj)
        {
            FindChannelRequest findChannelRequest = obj as FindChannelRequest;

            return(findChannelRequest != null && this.HasAgentIdentity == findChannelRequest.HasAgentIdentity && (!this.HasAgentIdentity || this.AgentIdentity.Equals(findChannelRequest.AgentIdentity)) && this.Options.Equals(findChannelRequest.Options));
        }