コード例 #1
0
        protected override async Task <string> ReadResponseAsync(HttpResponseMessage response)
        {
            var byteArray = await response.Content.ReadAsByteArrayAsync();

            return(ASWebXmlHelper.Decode(byteArray));
        }
コード例 #2
0
 protected override byte[] PrepareRequestBody(string content)
 {
     return(ASWebXmlHelper.Encode(content));
 }