CodeAttributeDeclaration コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
CodeAttributeDeclaration クラスの新しいインスタンスを初期化します。
オーバーロード
CodeAttributeDeclaration() |
CodeAttributeDeclaration クラスの新しいインスタンスを初期化します。 |
CodeAttributeDeclaration(CodeTypeReference) |
指定したコードの型参照を使用して、CodeAttributeDeclaration クラスの新しいインスタンスを初期化します。 |
CodeAttributeDeclaration(String) |
指定された名前を使用して、CodeAttributeDeclaration クラスの新しいインスタンスを初期化します。 |
CodeAttributeDeclaration(CodeTypeReference, CodeAttributeArgument[]) |
コード型参照と引数を指定して、CodeAttributeDeclaration クラスの新しいインスタンスを初期化します。 |
CodeAttributeDeclaration(String, CodeAttributeArgument[]) |
名前と引数を指定して、CodeAttributeDeclaration クラスの新しいインスタンスを初期化します。 |
CodeAttributeDeclaration()
CodeAttributeDeclaration クラスの新しいインスタンスを初期化します。
public:
CodeAttributeDeclaration();
public CodeAttributeDeclaration ();
Public Sub New ()
適用対象
CodeAttributeDeclaration(CodeTypeReference)
指定したコードの型参照を使用して、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)
指定された名前を使用して、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[])
コード型参照と引数を指定して、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設定するために使用されarguments
、 パラメーターは のプロパティをArguments設定するために使用されますCodeAttributeDeclarationName。
こちらもご覧ください
適用対象
CodeAttributeDeclaration(String, CodeAttributeArgument[])
名前と引数を指定して、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 型の配列。
適用対象
.NET