CodeAttributeDeclaration 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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
用于设置 AttributeType 和 Name 属性。
另请参阅
适用于
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
用于设置 AttributeType 和 Name 属性,而 arguments
参数用于设置 Arguments 的 CodeAttributeDeclaration属性。
另请参阅
适用于
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 类型的数组,它包含特性参数。