BattleNET.BattlEyeLoginCredentials.BattlEyeLoginCredentials C# (CSharp) 메소드

BattlEyeLoginCredentials() 공개 메소드

public BattlEyeLoginCredentials ( IPAddress host, int port, string password ) : System.Net
host System.Net.IPAddress
port int
password string
리턴 System.Net
        public BattlEyeLoginCredentials(IPAddress host, int port, string password)
            : this()
        {
            Host = host;
            Port = port;
            Password = password;
        }
BattlEyeLoginCredentials