public static AccountStateTagged DeserializeLengthDelimited(Stream stream, AccountStateTagged instance)
        {
            long position = (long)ProtocolParser.ReadUInt32(stream);

            position += stream.Position;
            return(AccountStateTagged.Deserialize(stream, instance, position));
        }
        public static AccountStateTagged DeserializeLengthDelimited(Stream stream)
        {
            AccountStateTagged accountStateTagged = new AccountStateTagged();

            AccountStateTagged.DeserializeLengthDelimited(stream, accountStateTagged);
            return(accountStateTagged);
        }
Exemple #3
0
        public static AccountStateTagged DeserializeLengthDelimited(Stream stream, AccountStateTagged instance)
        {
            long num = (long)((ulong)ProtocolParser.ReadUInt32(stream));

            num += stream.get_Position();
            return(AccountStateTagged.Deserialize(stream, instance, num));
        }
 public static AccountStateTagged Deserialize(Stream stream, AccountStateTagged 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.AccountState != null)
                 {
                     bnet.protocol.account.AccountState.DeserializeLengthDelimited(stream, instance.AccountState);
                 }
                 else
                 {
                     instance.AccountState = bnet.protocol.account.AccountState.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.Tags != null)
             {
                 AccountFieldTags.DeserializeLengthDelimited(stream, instance.Tags);
             }
             else
             {
                 instance.Tags = AccountFieldTags.DeserializeLengthDelimited(stream);
             }
         }
         else
         {
             if (stream.Position != limit)
             {
                 throw new ProtocolBufferException("Read past max limit");
             }
             break;
         }
     }
     return(instance);
 }
Exemple #5
0
 public static AccountStateTagged Deserialize(Stream stream, AccountStateTagged 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.Tags == null)
                 {
                     instance.Tags = AccountFieldTags.DeserializeLengthDelimited(stream);
                 }
                 else
                 {
                     AccountFieldTags.DeserializeLengthDelimited(stream, instance.Tags);
                 }
             }
             else if (instance.AccountState == null)
             {
                 instance.AccountState = AccountState.DeserializeLengthDelimited(stream);
             }
             else
             {
                 AccountState.DeserializeLengthDelimited(stream, instance.AccountState);
             }
         }
     }
     if (stream.get_Position() == limit)
     {
         return(instance);
     }
     throw new ProtocolBufferException("Read past max limit");
 }
 public static void Serialize(Stream stream, AccountStateTagged instance)
 {
     if (instance.HasAccountState)
     {
         stream.WriteByte(10);
         ProtocolParser.WriteUInt32(stream, instance.AccountState.GetSerializedSize());
         bnet.protocol.account.AccountState.Serialize(stream, instance.AccountState);
     }
     if (instance.HasTags)
     {
         stream.WriteByte(18);
         ProtocolParser.WriteUInt32(stream, instance.Tags.GetSerializedSize());
         AccountFieldTags.Serialize(stream, instance.Tags);
     }
 }
        public override bool Equals(object obj)
        {
            AccountStateTagged accountStateTagged = obj as AccountStateTagged;

            if (accountStateTagged == null)
            {
                return(false);
            }
            if (this.HasAccountState != accountStateTagged.HasAccountState || this.HasAccountState && !this.AccountState.Equals(accountStateTagged.AccountState))
            {
                return(false);
            }
            if (this.HasTags == accountStateTagged.HasTags && (!this.HasTags || this.Tags.Equals(accountStateTagged.Tags)))
            {
                return(true);
            }
            return(false);
        }
 public static AccountStateTagged Deserialize(Stream stream, AccountStateTagged instance)
 {
     return(AccountStateTagged.Deserialize(stream, instance, (long)-1));
 }
 public void Deserialize(Stream stream)
 {
     AccountStateTagged.Deserialize(stream, this);
 }
Exemple #10
0
        public override bool Equals(object obj)
        {
            AccountStateTagged accountStateTagged = obj as AccountStateTagged;

            return(accountStateTagged != null && this.HasAccountState == accountStateTagged.HasAccountState && (!this.HasAccountState || this.AccountState.Equals(accountStateTagged.AccountState)) && this.HasTags == accountStateTagged.HasTags && (!this.HasTags || this.Tags.Equals(accountStateTagged.Tags)));
        }
 public static AccountStateTagged Deserialize(Stream stream, AccountStateTagged instance)
 {
     return AccountStateTagged.Deserialize(stream, instance, -1L);
 }