다음을 통해 공유


CodeAttributeDeclaration 생성자

정의

CodeAttributeDeclaration 클래스의 새 인스턴스를 초기화합니다.

오버로드

CodeAttributeDeclaration()

CodeAttributeDeclaration 클래스의 새 인스턴스를 초기화합니다.

CodeAttributeDeclaration(CodeTypeReference)

지정된 코드 형식 참조를 사용하여 CodeAttributeDeclaration 클래스의 새 인스턴스를 초기화합니다.

CodeAttributeDeclaration(String)

지정한 이름을 사용하여 CodeAttributeDeclaration 클래스의 새 인스턴스를 초기화합니다.

CodeAttributeDeclaration(CodeTypeReference, CodeAttributeArgument[])

지정된 코드 형식 참조 및 인수를 사용하여 CodeAttributeDeclaration 클래스의 새 인스턴스를 초기화합니다.

CodeAttributeDeclaration(String, CodeAttributeArgument[])

지정된 이름과 인수를 사용하여 CodeAttributeDeclaration 클래스의 새 인스턴스를 초기화합니다.

CodeAttributeDeclaration()

Source:
CodeAttributeDeclaration.cs
Source:
CodeAttributeDeclaration.cs
Source:
CodeAttributeDeclaration.cs

CodeAttributeDeclaration 클래스의 새 인스턴스를 초기화합니다.

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

적용 대상

CodeAttributeDeclaration(CodeTypeReference)

Source:
CodeAttributeDeclaration.cs
Source:
CodeAttributeDeclaration.cs
Source:
CodeAttributeDeclaration.cs

지정된 코드 형식 참조를 사용하여 CodeAttributeDeclaration 클래스의 새 인스턴스를 초기화합니다.

public:
 CodeAttributeDeclaration(System::CodeDom::CodeTypeReference ^ attributeType);
public CodeAttributeDeclaration (System.CodeDom.CodeTypeReference attributeType);
new System.CodeDom.CodeAttributeDeclaration : System.CodeDom.CodeTypeReference -> System.CodeDom.CodeAttributeDeclaration
Public Sub New (attributeType As CodeTypeReference)

매개 변수

attributeType
CodeTypeReference

특성을 식별하는 CodeTypeReference입니다.

설명

attributeType 매개 변수는 및 Name 속성을 설정하는 AttributeType 데 사용됩니다.

추가 정보

적용 대상

CodeAttributeDeclaration(String)

Source:
CodeAttributeDeclaration.cs
Source:
CodeAttributeDeclaration.cs
Source:
CodeAttributeDeclaration.cs

지정한 이름을 사용하여 CodeAttributeDeclaration 클래스의 새 인스턴스를 초기화합니다.

public:
 CodeAttributeDeclaration(System::String ^ name);
public CodeAttributeDeclaration (string name);
new System.CodeDom.CodeAttributeDeclaration : string -> System.CodeDom.CodeAttributeDeclaration
Public Sub New (name As String)

매개 변수

name
String

특성 이름입니다.

적용 대상

CodeAttributeDeclaration(CodeTypeReference, CodeAttributeArgument[])

Source:
CodeAttributeDeclaration.cs
Source:
CodeAttributeDeclaration.cs
Source:
CodeAttributeDeclaration.cs

지정된 코드 형식 참조 및 인수를 사용하여 CodeAttributeDeclaration 클래스의 새 인스턴스를 초기화합니다.

public:
 CodeAttributeDeclaration(System::CodeDom::CodeTypeReference ^ attributeType, ... cli::array <System::CodeDom::CodeAttributeArgument ^> ^ arguments);
public CodeAttributeDeclaration (System.CodeDom.CodeTypeReference attributeType, params System.CodeDom.CodeAttributeArgument[] arguments);
new System.CodeDom.CodeAttributeDeclaration : System.CodeDom.CodeTypeReference * System.CodeDom.CodeAttributeArgument[] -> System.CodeDom.CodeAttributeDeclaration
Public Sub New (attributeType As CodeTypeReference, ParamArray arguments As CodeAttributeArgument())

매개 변수

attributeType
CodeTypeReference

특성을 식별하는 CodeTypeReference입니다.

arguments
CodeAttributeArgument[]

특성에 대한 인수를 포함하는 CodeAttributeArgument 형식의 배열입니다.

설명

attributeType 매개 변수는 및 Name 속성을 설정하는 AttributeType 데 사용되며 arguments 매개 변수는 에 대한 CodeAttributeDeclaration속성을 설정하는 Arguments 데 사용됩니다.

추가 정보

적용 대상

CodeAttributeDeclaration(String, CodeAttributeArgument[])

Source:
CodeAttributeDeclaration.cs
Source:
CodeAttributeDeclaration.cs
Source:
CodeAttributeDeclaration.cs

지정된 이름과 인수를 사용하여 CodeAttributeDeclaration 클래스의 새 인스턴스를 초기화합니다.

public:
 CodeAttributeDeclaration(System::String ^ name, ... cli::array <System::CodeDom::CodeAttributeArgument ^> ^ arguments);
public CodeAttributeDeclaration (string name, params System.CodeDom.CodeAttributeArgument[] arguments);
new System.CodeDom.CodeAttributeDeclaration : string * System.CodeDom.CodeAttributeArgument[] -> System.CodeDom.CodeAttributeDeclaration
Public Sub New (name As String, ParamArray arguments As CodeAttributeArgument())

매개 변수

name
String

특성 이름입니다.

arguments
CodeAttributeArgument[]

특성에 대한 인수를 포함하는 CodeAttributeArgument 형식의 배열입니다.

적용 대상