Click or drag to resize

IRequestProcessorProcess Method

Processes the Request object and returns a Response object which is either a FailureResponse or a Response that's type is the counterpart to that of the Request object passed in. For example, successful processing of a LocationDataRequest will result in a LocationDataResponse.

Namespace: DegreeDays.Api
Assembly: DegreeDays (in DegreeDays.dll) Version: 1.4
Syntax
Response Process(
	Request request
)

Parameters

request  Request
The Request to be processed. Cannot be null.

Return Value

Response
A Response object which is either a FailureResponse or a Response that's type is is the counterpart to that of the Request passed in.
Exceptions
ExceptionCondition
TransportExceptionA network- or stream-related error.
ArgumentNullExceptionrequest is null.
See Also