AcManager.Tools.Helpers.Api.KunosApiProvider.TryToGetInformationDirect C# (CSharp) 메소드

TryToGetInformationDirect() 개인적인 메소드

private TryToGetInformationDirect ( [ address ) : ServerInformation
address [
리턴 AcManager.Tools.Helpers.Api.Kunos.ServerInformation
        public static ServerInformation TryToGetInformationDirect([NotNull] string address) {
            if (address == null) throw new ArgumentNullException(nameof(address));

            string ip;
            int port;
            return ParseAddress(address, out ip, out port) && port > 0 ? TryToGetInformationDirect(ip, port) : null;
        }

Same methods

KunosApiProvider::TryToGetInformationDirect ( string ip, int portC ) : ServerInformation