Server.AccountLoginEventArgs.AccountLoginEventArgs C# (CSharp) Méthode

AccountLoginEventArgs() public méthode

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