public AvatarProfileFullEntry RemoveAvatarProfileFullEntry()
        {
            AvatarProfileFullEntry tmp = this.m_entry;

            this.m_entry = null;
            return(tmp);
        }
        public override void Destruct()
        {
            base.Destruct();

            if (this.m_entry != null)
            {
                this.m_entry.Destruct();
                this.m_entry = null;
            }
        }
 public void SetAvatarProfileFullEntry(AvatarProfileFullEntry entry)
 {
     this.m_entry = entry;
 }
 public override void Decode()
 {
     base.Decode();
     this.m_entry = new AvatarProfileFullEntry();
     this.m_entry.Decode(this.m_stream);
 }