UnknownPropertyException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
UnknownPropertyException() |
Constructor for the T:Microsoft.SqlServer.Management.Smo.UnknownPropertyException. |
UnknownPropertyException(String) |
Constructor for the T:Microsoft.SqlServer.Management.Smo.UnknownPropertyException. |
UnknownPropertyException(String, Exception) |
Constructor for the T:Microsoft.SqlServer.Management.Smo.UnknownPropertyException. |
UnknownPropertyException()
Constructor for the T:Microsoft.SqlServer.Management.Smo.UnknownPropertyException.
public UnknownPropertyException ();
Public Sub New ()
Applies to
UnknownPropertyException(String)
Constructor for the T:Microsoft.SqlServer.Management.Smo.UnknownPropertyException.
public UnknownPropertyException (string propertyName);
new Microsoft.SqlServer.Management.Smo.UnknownPropertyException : string -> Microsoft.SqlServer.Management.Smo.UnknownPropertyException
Public Sub New (propertyName As String)
Parameters
- propertyName
- String
The unknown property name.
Applies to
UnknownPropertyException(String, Exception)
Constructor for the T:Microsoft.SqlServer.Management.Smo.UnknownPropertyException.
public UnknownPropertyException (string message, Exception innerException);
new Microsoft.SqlServer.Management.Smo.UnknownPropertyException : string * Exception -> Microsoft.SqlServer.Management.Smo.UnknownPropertyException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
The message of the exception as string.
- innerException
- Exception
The T:System.Exception instance that caused the current exception.