Server.Misc.AccountHandler.CanCreate C# (CSharp) Méthode

CanCreate() public static méthode

public static CanCreate ( IPAddress ip ) : bool
ip System.Net.IPAddress
Résultat bool
		public static bool CanCreate( IPAddress ip )
		{
			if ( !IPTable.ContainsKey( ip ) )
				return true;

			return ( IPTable[ip] < MaxAccountsPerIP );
		}