CodeThrowExceptionStatement Constructors

Definition

Initializes a new instance of the CodeThrowExceptionStatement class.

Overloads

CodeThrowExceptionStatement()

Initializes a new instance of the CodeThrowExceptionStatement class.

CodeThrowExceptionStatement(CodeExpression)

Initializes a new instance of the CodeThrowExceptionStatement class with the specified exception type instance.

CodeThrowExceptionStatement()

Source:
CodeThrowExceptionStatement.cs
Source:
CodeThrowExceptionStatement.cs
Source:
CodeThrowExceptionStatement.cs
Source:
CodeThrowExceptionStatement.cs

Initializes a new instance of the CodeThrowExceptionStatement class.

public:
 CodeThrowExceptionStatement();
public CodeThrowExceptionStatement ();
Public Sub New ()

Applies to

CodeThrowExceptionStatement(CodeExpression)

Source:
CodeThrowExceptionStatement.cs
Source:
CodeThrowExceptionStatement.cs
Source:
CodeThrowExceptionStatement.cs
Source:
CodeThrowExceptionStatement.cs

Initializes a new instance of the CodeThrowExceptionStatement class with the specified exception type instance.

public:
 CodeThrowExceptionStatement(System::CodeDom::CodeExpression ^ toThrow);
public CodeThrowExceptionStatement (System.CodeDom.CodeExpression toThrow);
new System.CodeDom.CodeThrowExceptionStatement : System.CodeDom.CodeExpression -> System.CodeDom.CodeThrowExceptionStatement
Public Sub New (toThrow As CodeExpression)

Parameters

toThrow
CodeExpression

A CodeExpression that indicates the exception to throw.

See also

Applies to