public static OwnershipRequest DeserializeLengthDelimited(Stream stream)
        {
            OwnershipRequest ownershipRequest = new OwnershipRequest();

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

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

            position += stream.Position;
            return(OwnershipRequest.Deserialize(stream, instance, position));
        }
 public static OwnershipRequest Deserialize(Stream stream, OwnershipRequest instance, long limit)
 {
     instance.ReleaseOwnership = false;
     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 (num == 16)
                 {
                     instance.ReleaseOwnership = ProtocolParser.ReadBool(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 (instance.EntityId != null)
             {
                 bnet.protocol.EntityId.DeserializeLengthDelimited(stream, instance.EntityId);
             }
             else
             {
                 instance.EntityId = bnet.protocol.EntityId.DeserializeLengthDelimited(stream);
             }
         }
         else
         {
             if (stream.Position != limit)
             {
                 throw new ProtocolBufferException("Read past max limit");
             }
             break;
         }
     }
     return(instance);
 }
 public static OwnershipRequest Deserialize(Stream stream, OwnershipRequest instance, long limit)
 {
     instance.ReleaseOwnership = false;
     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 != 16)
                 {
                     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.ReleaseOwnership = ProtocolParser.ReadBool(stream);
                 }
             }
             else if (instance.EntityId == null)
             {
                 instance.EntityId = EntityId.DeserializeLengthDelimited(stream);
             }
             else
             {
                 EntityId.DeserializeLengthDelimited(stream, instance.EntityId);
             }
         }
     }
     if (stream.get_Position() == limit)
     {
         return(instance);
     }
     throw new ProtocolBufferException("Read past max limit");
 }
 public static void Serialize(Stream stream, OwnershipRequest instance)
 {
     if (instance.EntityId == null)
     {
         throw new ArgumentNullException("EntityId", "Required by proto specification.");
     }
     stream.WriteByte(10);
     ProtocolParser.WriteUInt32(stream, instance.EntityId.GetSerializedSize());
     EntityId.Serialize(stream, instance.EntityId);
     if (instance.HasReleaseOwnership)
     {
         stream.WriteByte(16);
         ProtocolParser.WriteBool(stream, instance.ReleaseOwnership);
     }
 }
        public override bool Equals(object obj)
        {
            OwnershipRequest ownershipRequest = obj as OwnershipRequest;

            if (ownershipRequest == null)
            {
                return(false);
            }
            if (!this.EntityId.Equals(ownershipRequest.EntityId))
            {
                return(false);
            }
            if (this.HasReleaseOwnership == ownershipRequest.HasReleaseOwnership && (!this.HasReleaseOwnership || this.ReleaseOwnership.Equals(ownershipRequest.ReleaseOwnership)))
            {
                return(true);
            }
            return(false);
        }
 public static OwnershipRequest Deserialize(Stream stream, OwnershipRequest instance)
 {
     return(OwnershipRequest.Deserialize(stream, instance, -1L));
 }
 public void Deserialize(Stream stream)
 {
     OwnershipRequest.Deserialize(stream, this);
 }
        public override bool Equals(object obj)
        {
            OwnershipRequest ownershipRequest = obj as OwnershipRequest;

            return(ownershipRequest != null && this.EntityId.Equals(ownershipRequest.EntityId) && this.HasReleaseOwnership == ownershipRequest.HasReleaseOwnership && (!this.HasReleaseOwnership || this.ReleaseOwnership.Equals(ownershipRequest.ReleaseOwnership)));
        }