Sdílet prostřednictvím


CodeAttributeArgument Konstruktory

Definice

Inicializuje novou instanci CodeAttributeArgument třídy.

Přetížení

CodeAttributeArgument()

Inicializuje novou instanci CodeAttributeArgument třídy.

CodeAttributeArgument(CodeExpression)

Inicializuje novou instanci CodeAttributeArgument třídy pomocí zadané hodnoty.

CodeAttributeArgument(String, CodeExpression)

Inicializuje novou instanci CodeAttributeArgument třídy pomocí zadaného názvu a hodnoty.

CodeAttributeArgument()

Zdroj:
CodeAttributeArgument.cs
Zdroj:
CodeAttributeArgument.cs
Zdroj:
CodeAttributeArgument.cs

Inicializuje novou instanci CodeAttributeArgument třídy.

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

Platí pro

CodeAttributeArgument(CodeExpression)

Zdroj:
CodeAttributeArgument.cs
Zdroj:
CodeAttributeArgument.cs
Zdroj:
CodeAttributeArgument.cs

Inicializuje novou instanci CodeAttributeArgument třídy pomocí zadané hodnoty.

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)

Parametry

value
CodeExpression

A CodeExpression , který představuje hodnotu argumentu.

Viz také

Platí pro

CodeAttributeArgument(String, CodeExpression)

Zdroj:
CodeAttributeArgument.cs
Zdroj:
CodeAttributeArgument.cs
Zdroj:
CodeAttributeArgument.cs

Inicializuje novou instanci CodeAttributeArgument třídy pomocí zadaného názvu a hodnoty.

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)

Parametry

name
String

Název vlastnosti atributu, pro který argument platí.

value
CodeExpression

A CodeExpression , který představuje hodnotu argumentu.

Viz také

Platí pro