Show / Hide Table of Contents

Class CustomResponseMessageBase

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.

Inheritance
object
CustomResponseMessageBase
CreateJournalizedCaseResponse
GetJournalizedCaseResponse
UpdateJournalizedCaseResponse
CreateCustomObjectResponse
CreateDeedOnPostListResponse
CreateDeedResponse
GetDeedResponse
UpdateDeedResponse
GetWorkingDocumentResponse
NewWorkingDocumentResponse
UpdateWorkingDocumentResponse
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 CustomResponseMessageBase
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
[MessageBodyMember]
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