Exemplo n.º 1
0
        public void WebServiceUtilsDeserializeResponseThrownException()
        {
            StringContent       content  = WebServiceUtils.MakeStringContent <ProductJson>(Product, Encoding.UTF8, "application/json");
            HttpResponseMessage response = this.WebServiceDriver.PutWithResponse("/api/XML_JSON/GetAnErrorPLZ", "application/json", content, false);

            WebServiceUtils.DeserializeResponse <ProductJson>(response, new List <MediaTypeFormatter> {
                new CustomXmlMediaTypeFormatter("image/gif", typeof(ProductJson))
            });
        }