public DKApiClient(DKApiMessageHandler handler) : base(handler)
        {
            // The BaseAddress is prepended to all relative
            // URI paths (such as paths not starting with '/').
            const string ApiAddress = "https://dkintapi.keytest.net/api/ver6/";

            BaseAddress = new Uri(ApiAddress);
        }
示例#2
0
        public DKApiAccess()
        {
            DKApiMessageHandler handler = new DKApiMessageHandler();

            Client = new DKApiClient(handler);
        }