SoapDefaultReplyBehaviorResponse Method  | 
 
            Responses the specified method name.
            
 
    Namespace: 
   Hummingbird.TestFramework.Services
    Assembly:
   Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntaxpublic static Object Response(
	string methodName,
	Object request,
	Type requestType,
	Type returnType
)
Public Shared Function Response ( 
	methodName As String,
	request As Object,
	requestType As Type,
	returnType As Type
) As Object
public:
static Object^ Response(
	String^ methodName, 
	Object^ request, 
	Type^ requestType, 
	Type^ returnType
)
static member Response : 
        methodName : string * 
        request : Object * 
        requestType : Type * 
        returnType : Type -> Object 
Parameters
- methodName
 - Type: SystemString
Name of the method. - request
 - Type: SystemObject
The request. - requestType
 - Type: SystemType
Type of the request. - returnType
 - Type: SystemType
Type of the return. 
Return Value
Type: 
ObjectAn object represents the response selected for reply. the response can be 
 if there is no defined reply for the current service.
See Also