コード例 #1
0
        public SubscriptionResponse Send(string serviceUrl)
        {
            SubscriptionResponse result = new SubscriptionResponse();

            string xmlToSend = BuildXml();
            string responseXml = RateService.SendRequest(serviceUrl, xmlToSend);
            result.Parse(responseXml);

            return result;
        }
コード例 #2
0
        public SubscriptionResponse Send(string serviceUrl)
        {
            SubscriptionResponse result = new SubscriptionResponse();

            string xmlToSend   = BuildXml();
            string responseXml = RateService.SendRequest(serviceUrl, xmlToSend);

            result.Parse(responseXml);

            return(result);
        }