예제 #1
0
        /// <summary>
        ///     Removes the <see cref="AvatarProfileFullEntry"/> instance.
        /// </summary>
        public AvatarProfileFullEntry RemoveAvatarProfileFullEntry()
        {
            AvatarProfileFullEntry tmp = this._entry;

            this._entry = null;
            return(tmp);
        }
예제 #2
0
        /// <summary>
        ///     Destructs this instance.
        /// </summary>
        public override void Destruct()
        {
            base.Destruct();

            if (this._entry != null)
            {
                this._entry.Destruct();
                this._entry = null;
            }
        }
예제 #3
0
 /// <summary>
 ///     Sets the <see cref="AvatarProfileFullEntry"/> instance.
 /// </summary>
 public void SetAvatarProfileFullEntry(AvatarProfileFullEntry entry)
 {
     this._entry = entry;
 }
예제 #4
0
 /// <summary>
 ///     Decodes this instance.
 /// </summary>
 public override void Decode()
 {
     base.Decode();
     this._entry = new AvatarProfileFullEntry();
     this._entry.Decode(this.Stream);
 }