コード例 #1
0
        public AvatarProfileFullEntry RemoveAvatarProfileFullEntry()
        {
            AvatarProfileFullEntry tmp = this.m_entry;

            this.m_entry = null;
            return(tmp);
        }
コード例 #2
0
        public override void Destruct()
        {
            base.Destruct();

            if (this.m_entry != null)
            {
                this.m_entry.Destruct();
                this.m_entry = null;
            }
        }
コード例 #3
0
 public void SetAvatarProfileFullEntry(AvatarProfileFullEntry entry)
 {
     this.m_entry = entry;
 }
コード例 #4
0
 public override void Decode()
 {
     base.Decode();
     this.m_entry = new AvatarProfileFullEntry();
     this.m_entry.Decode(this.m_stream);
 }