Class CustomResponseHeaderMessageBase
Base response for response messages where the corresponding request message was either a CustomRequestMessageBase or a CustomRequestHeaderMessageBase. Adds an additional Custom property for returning results from the request handler referenced in the request where the message body of the response is made up of a stream that prevents the custom parameters from being passed in the body.
Inheritance
Inherited Members
Namespace: Integration.DataContracts
Syntax
[MessageContract]
public abstract class CustomResponseHeaderMessageBase
Remarks
Should only be used when the corresponding request was CustomRequestMessageBase or CustomRequestHeaderMessageBase.
Properties
CustomReturnValues
The return values from the custom handler. The Data property can be null or empty (or whatever the handler returns).
Declaration
[MessageHeader]
public CustomResponseDTO CustomReturnValues { get; set; }
Property Value
Type | Description |
---|---|
CustomResponseDTO | The custom return values. |
Remarks
Should only be used when the corresponding request was CustomRequestMessageBase or CustomRequestHeaderMessageBase.