Avalon.Network.Packets.SMSG_CHARACTER_DELETE.SMSG_CHARACTER_DELETE C# (CSharp) Method

SMSG_CHARACTER_DELETE() public method

public SMSG_CHARACTER_DELETE ( string Name, int State ) : System
Name string
State int
return System
        public SMSG_CHARACTER_DELETE(string Name, int State)
            : base(35231)
        {
            this.EnsureCapacity((ushort)((Name.Length * 2) + 8));

            m_Stream.Write((int)State);
            m_Stream.Write((ushort)(Name.Length + 1));
            m_Stream.WriteLittleUniFixed(Name, Name.Length);
            m_Stream.Write((ushort)0x0000);
        }
SMSG_CHARACTER_DELETE