Avalon.Network.Internal.SMSG_CONNECT_MASTER.SMSG_CONNECT_MASTER C# (CSharp) Method

SMSG_CONNECT_MASTER() public method

public SMSG_CONNECT_MASTER ( string name, string ipaddr, ushort port ) : System
name string
ipaddr string
port ushort
return System
        public SMSG_CONNECT_MASTER(string name, string ipaddr, ushort port)
            : base(1)
        {
            this.EnsureCapacity(32);

            m_Stream.WriteAsciiNull(name);
            m_Stream.WriteAsciiNull(ipaddr);
            m_Stream.Write(port);
        }
SMSG_CONNECT_MASTER