InvalidSmoOperationException Constructors

Definition

Overloads

InvalidSmoOperationException()

Constructor for the T:Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException.

InvalidSmoOperationException(String)

Constructor for the T:Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException.

InvalidSmoOperationException(String, SqlSmoState)

Constructor for the T:Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException.

InvalidSmoOperationException(String, Exception)

Constructor for the T:Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException.

InvalidSmoOperationException()

Constructor for the T:Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException.

public InvalidSmoOperationException ();
Public Sub New ()

Applies to

InvalidSmoOperationException(String)

Constructor for the T:Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException.

public InvalidSmoOperationException (string message);
new Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException : string -> Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException
Public Sub New (message As String)

Parameters

message
String

The message of the exception as string.

Applies to

InvalidSmoOperationException(String, SqlSmoState)

Constructor for the T:Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException.

public InvalidSmoOperationException (string opName, Microsoft.SqlServer.Management.Smo.SqlSmoState state);
new Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException : string * Microsoft.SqlServer.Management.Smo.SqlSmoState -> Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException
Public Sub New (opName As String, state As SqlSmoState)

Parameters

opName
String

The invalid operation name as string.

state
SqlSmoState

The state as a T:Microsoft.SqlServer.Management.Smo.SqlSmoState object.

Applies to

InvalidSmoOperationException(String, Exception)

Constructor for the T:Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException.

public InvalidSmoOperationException (string message, Exception innerException);
new Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException : string * Exception -> Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException
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.

Applies to