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

GameLoginEventArgs() public méthode

public GameLoginEventArgs ( Server.Network.NetState state, string un, string pw ) : System
state Server.Network.NetState
un string
pw string
Résultat System
		public GameLoginEventArgs( NetState state, string un, string pw )
		{
			m_State = state;
			m_Username = un;
			m_Password = pw;
		}
	}
GameLoginEventArgs