Server.AccountLoginEventArgs.AccountLoginEventArgs C# (CSharp) Method

AccountLoginEventArgs() public method

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