C# Class Microsoft.Silverlight.Testing.Service.WebServiceResult

Result object for asynchronous test service response that uses a simple web service / POX call.
Inheritance: ServiceResult
Show file Open project: garyjohnson/wpnest Class Usage Examples

Public Methods

Method Description
ReadHttpWebResponse ( ) : void

Reads the web response, if successful, and parses out the string content.

WebServiceResult ( WebRequest request, WebResponse response ) : System

Initializes a new web service result.

WebServiceResult ( WebRequest request, WebResponse response, object details ) : System

Initializes a new web service result.

Private Methods

Method Description
ProcessResponse ( ) : void

Method Details

ReadHttpWebResponse() public method

Reads the web response, if successful, and parses out the string content.
public ReadHttpWebResponse ( ) : void
return void

WebServiceResult() public method

Initializes a new web service result.
public WebServiceResult ( WebRequest request, WebResponse response ) : System
request System.Net.WebRequest The request object.
response System.Net.WebResponse The response object.
return System

WebServiceResult() public method

Initializes a new web service result.
public WebServiceResult ( WebRequest request, WebResponse response, object details ) : System
request System.Net.WebRequest The request object.
response System.Net.WebResponse The response object.
details object The details to associate for debugging /// purposes.
return System