WebDavHttpException Constructor (String, Uri, IMultistatus, HttpStatus, String, Exception)
IT Hit WebDAV Classes Reference 
            Initializes a new instance of the 
WebDavHttpException class with
            a specified error message, a reference to the inner exception that is
            the cause of this exception, href of the item, multistatus response
            and status of the response caused the error.
            
 
    Namespace: 
   ITHit.WebDAV.Client.Exceptions
    Assembly:
   ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 6.0.4052-Beta
 Syntax
Syntaxpublic WebDavHttpException(
	string message,
	Uri href,
	IMultistatus multistatus,
	HttpStatus status,
	string httpMethod,
	Exception innerException
)
Public Sub New ( 
	message As String,
	href As Uri,
	multistatus As IMultistatus,
	status As HttpStatus,
	httpMethod As String,
	innerException As Exception
)
public:
WebDavHttpException(
	String^ message, 
	Uri^ href, 
	IMultistatus^ multistatus, 
	HttpStatus status, 
	String^ httpMethod, 
	Exception^ innerException
)
new : 
        message : string * 
        href : Uri * 
        multistatus : IMultistatus * 
        status : HttpStatus * 
        httpMethod : string * 
        innerException : Exception -> WebDavHttpExceptionParameters
- message
- Type: SystemString
 The error message string.
- href
- Type: SystemUri
 The href of an item caused the current exception.
- multistatus
- Type: ITHit.WebDAV.ClientIMultistatus
 Multistatus response containing error information.
- status
- Type: ITHit.WebDAV.ClientHttpStatus
 Status of response that caused error.
- httpMethod
- Type: SystemString
 Http method for which request failed.
- innerException
- Type: SystemException
 The Exception instance that caused the current exception.
 See Also
See Also