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