FunctionWrongReturnTypeException Constructor (String, String, String)
Initializes a new instance of the T:Microsoft.SqlServer.Management.Dmf.ExceptionAlreadyRegisteredException class with the specified function, expected return type and actual return type.
Namespace: Microsoft.SqlServer.Management.Dmf
Assembly: Microsoft.SqlServer.Dmf (in Microsoft.SqlServer.Dmf.dll)
Syntax
public FunctionWrongReturnTypeException(
string functionName,
string receivedType,
string expectedType
)
public:
FunctionWrongReturnTypeException(
String^ functionName,
String^ receivedType,
String^ expectedType
)
new :
functionName:string *
receivedType:string *
expectedType:string -> FunctionWrongReturnTypeException
Public Sub New (
functionName As String,
receivedType As String,
expectedType As String
)
Parameters
functionName
Type: System.StringA String value that specifies the function that caused the exception.
receivedType
Type: System.StringA String value that specifies the type that is returned by the function.
expectedType
Type: System.StringA String value that specifies the type that is expected to be returned by the function.
Remarks
This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.
Examples
See Also
FunctionWrongReturnTypeException Overload
FunctionWrongReturnTypeException Class
Microsoft.SqlServer.Management.Dmf Namespace
Return to top