Class HandlerMethodReturnValueHandlerComposite
Inheritance
System.Object
HandlerMethodReturnValueHandlerComposite
Assembly: Steeltoe.Messaging.MessagingBase.dll
Syntax
public class HandlerMethodReturnValueHandlerComposite : object, IAsyncHandlerMethodReturnValueHandler, IHandlerMethodReturnValueHandler
Properties
|
Edit this page
View Source
ReturnValueHandlers
Declaration
public IList<IHandlerMethodReturnValueHandler> ReturnValueHandlers { get; }
Property Value
Methods
|
Edit this page
View Source
AddHandler(IHandlerMethodReturnValueHandler)
Declaration
public HandlerMethodReturnValueHandlerComposite AddHandler(IHandlerMethodReturnValueHandler returnValueHandler)
Parameters
Returns
|
Edit this page
View Source
AddHandlers(IList<IHandlerMethodReturnValueHandler>)
Declaration
public HandlerMethodReturnValueHandlerComposite AddHandlers(IList<IHandlerMethodReturnValueHandler> handlers)
Parameters
Returns
|
Edit this page
View Source
Clear()
Declaration
|
Edit this page
View Source
HandleReturnValue(Object, ParameterInfo, IMessage)
Declaration
public void HandleReturnValue(object returnValue, ParameterInfo returnType, IMessage message)
Parameters
Type |
Name |
Description |
System.Object |
returnValue |
|
ParameterInfo |
returnType |
|
IMessage |
message |
|
|
Edit this page
View Source
IsAsyncReturnValue(Object, ParameterInfo)
Declaration
public bool IsAsyncReturnValue(object returnValue, ParameterInfo returnType)
Parameters
Type |
Name |
Description |
System.Object |
returnValue |
|
ParameterInfo |
returnType |
|
Returns
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
SupportsReturnType(ParameterInfo)
Declaration
public bool SupportsReturnType(ParameterInfo returnType)
Parameters
Type |
Name |
Description |
ParameterInfo |
returnType |
|
Returns
Type |
Description |
System.Boolean |
|
Implements