System.Net.Http.HttpEntityException.HttpEntityException C# (CSharp) Method

HttpEntityException() public method

Initializes a new instance of the HttpEntityException class.
public HttpEntityException ( HttpResponseMessage response ) : System
response HttpResponseMessage
return System
		public HttpEntityException(HttpResponseMessage response)
			: base(response.ReasonPhrase)
		{
			this.Response = response;
		}
HttpEntityException