PropertyNotSetException 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
PropertyNotSetException() |
Constructor for the T:Microsoft.SqlServer.Management.Smo.PropertyNotSetException. |
PropertyNotSetException(String) |
Constructor for the T:Microsoft.SqlServer.Management.Smo.PropertyNotSetException. |
PropertyNotSetException(String, Exception) |
Constructor for the T:Microsoft.SqlServer.Management.Smo.PropertyNotSetException. |
PropertyNotSetException()
Constructor for the T:Microsoft.SqlServer.Management.Smo.PropertyNotSetException.
public PropertyNotSetException ();
Public Sub New ()
Applies to
PropertyNotSetException(String)
Constructor for the T:Microsoft.SqlServer.Management.Smo.PropertyNotSetException.
public PropertyNotSetException (string propertyName);
new Microsoft.SqlServer.Management.Smo.PropertyNotSetException : string -> Microsoft.SqlServer.Management.Smo.PropertyNotSetException
Public Sub New (propertyName As String)
Parameters
- propertyName
- String
The name of the property that has not been set as string.
Applies to
PropertyNotSetException(String, Exception)
Constructor for the T:Microsoft.SqlServer.Management.Smo.PropertyNotSetException.
public PropertyNotSetException (string message, Exception innerException);
new Microsoft.SqlServer.Management.Smo.PropertyNotSetException : string * Exception -> Microsoft.SqlServer.Management.Smo.PropertyNotSetException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
Exception message as string.
- innerException
- Exception
The T:System.Exception instance that caused the current exception.