Show / Hide Table of Contents

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
object
CustomResponseHeaderMessageBase
CreateDocumentFromTemplateResponse
GetWorkingDocumentContentResponse
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
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.

Back to top Created by Formpipe