Compartilhar via


CodeAttributeArgument Construtores

Definição

Inicializa uma nova instância da classe CodeAttributeArgument.

Sobrecargas

CodeAttributeArgument()

Inicializa uma nova instância da classe CodeAttributeArgument.

CodeAttributeArgument(CodeExpression)

Inicializa uma nova instância da classe CodeAttributeArgument usando o valor especificado.

CodeAttributeArgument(String, CodeExpression)

Inicializa uma nova instância da classe CodeAttributeArgument usando o nome e o valor especificados.

CodeAttributeArgument()

Origem:
CodeAttributeArgument.cs
Origem:
CodeAttributeArgument.cs
Origem:
CodeAttributeArgument.cs

Inicializa uma nova instância da classe CodeAttributeArgument.

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

Aplica-se a

CodeAttributeArgument(CodeExpression)

Origem:
CodeAttributeArgument.cs
Origem:
CodeAttributeArgument.cs
Origem:
CodeAttributeArgument.cs

Inicializa uma nova instância da classe CodeAttributeArgument usando o valor especificado.

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

Parâmetros

value
CodeExpression

Um CodeExpression que representa o valor do argumento.

Confira também

Aplica-se a

CodeAttributeArgument(String, CodeExpression)

Origem:
CodeAttributeArgument.cs
Origem:
CodeAttributeArgument.cs
Origem:
CodeAttributeArgument.cs

Inicializa uma nova instância da classe CodeAttributeArgument usando o nome e o valor especificados.

public:
 CodeAttributeArgument(System::String ^ name, System::CodeDom::CodeExpression ^ value);
public CodeAttributeArgument (string name, System.CodeDom.CodeExpression value);
new System.CodeDom.CodeAttributeArgument : string * System.CodeDom.CodeExpression -> System.CodeDom.CodeAttributeArgument
Public Sub New (name As String, value As CodeExpression)

Parâmetros

name
String

O nome da propriedade de atributo à qual o argumento se aplica.

value
CodeExpression

Um CodeExpression que representa o valor do argumento.

Confira também

Aplica-se a