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