DataServiceQueryException Constructor (String, Exception, QueryOperationResponse)
Initializes a new instance of the DataServiceQueryException class.
Namespace: System.Data.Services.Client
Assembly: Microsoft.Data.Services.Client (in Microsoft.Data.Services.Client.dll)
Syntax
'Declaration
Public Sub New ( _
message As String, _
innerException As Exception, _
response As QueryOperationResponse _
)
'Usage
Dim message As String
Dim innerException As Exception
Dim response As QueryOperationResponse
Dim instance As New DataServiceQueryException(message, _
innerException, response)
public DataServiceQueryException(
string message,
Exception innerException,
QueryOperationResponse response
)
public:
DataServiceQueryException(
String^ message,
Exception^ innerException,
QueryOperationResponse^ response
)
new :
message:string *
innerException:Exception *
response:QueryOperationResponse -> DataServiceQueryException
public function DataServiceQueryException(
message : String,
innerException : Exception,
response : QueryOperationResponse
)
Parameters
- message
Type: System.String
The string value that contains the error message.
- innerException
Type: System.Exception
The inner exception object.
- response
Type: System.Data.Services.Client.QueryOperationResponse
The QueryOperationResponse object.
See Also
Reference
DataServiceQueryException Class