ResponseProcessingException Constructor

Initializes a new instance of the ResponseProcessingException class using the specified message, a reference to the inner exception that is the cause of the exception, and the SOAP response.

Namespace: Microsoft.Web.Services3
Assembly: Microsoft.Web.Services3 (in microsoft.web.services3.dll)

Usage

'Usage
Dim s As String
Dim innerException As Exception
Dim response As SoapEnvelope
Dim responseProcessingException1 As New ResponseProcessingException(s, innerException, response)

Syntax

'Declaration
Public Sub New( _
    ByVal s As String, _
    ByVal innerException As Exception, _
    ByVal response As SoapEnvelope _
)
public ResponseProcessingException(
    string s, 
    Exception innerException, 
    SoapEnvelope response
);
public:
ResponseProcessingException(
    String^ s, 
    Exception^ innerException, 
    SoapEnvelope^ response
);
public ResponseProcessingException(
    System.String s, 
    Exception innerException, 
    SoapEnvelope response
);
public function ResponseProcessingException(
     s : String, 
     innerException : Exception, 
     response : SoapEnvelope
);

Parameters

  • s
    A message that describes the error.
  • innerException
    The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.
  • response
    A SoapEnvelope that represents the SOAP response that was being processed when the error occurred.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows 2000, Windows 2000 Server, Windows 2000 Advanced Server

Target Platforms

See Also

Reference

ResponseProcessingException Class
ResponseProcessingException Members
Microsoft.Web.Services3 Namespace