Server.AccountLoginEventArgs.AccountLoginEventArgs C# (CSharp) 메소드

AccountLoginEventArgs() 공개 메소드

public AccountLoginEventArgs ( Server.Network.NetState state, string username, string password ) : System
state Server.Network.NetState
username string
password string
리턴 System
		public AccountLoginEventArgs( NetState state, string username, string password )
		{
			m_State = state;
			m_Username = username;
			m_Password = password;
		}
	}
AccountLoginEventArgs