Share via


CompilerCollection.Item[] プロパティ

定義

指定された Compiler コレクション項目を取得します。

オーバーロード

Item[Int32]

コレクションの指定したインデックスにある Compiler を取得します。

Item[String]

指定した言語の Compiler コレクション要素を取得します。

Item[Int32]

コレクションの指定したインデックスにある Compiler を取得します。

public:
 property System::Web::Configuration::Compiler ^ default[int] { System::Web::Configuration::Compiler ^ get(int index); };
public System.Web.Configuration.Compiler this[int index] { get; }
member this.Item(int) : System.Web.Configuration.Compiler
Default Public ReadOnly Property Item(index As Integer) As Compiler

パラメーター

index
Int32

Compiler 内の CompilerCollection オブジェクトを指定する整数値。

プロパティ値

Compiler オブジェクト。

注釈

コンパイラ オブジェクトがコレクションに存在しない場合は、範囲外の例外がスローされます。

適用対象

Item[String]

指定した言語の Compiler コレクション要素を取得します。

public:
 property System::Web::Configuration::Compiler ^ default[System::String ^] { System::Web::Configuration::Compiler ^ get(System::String ^ language); };
public System.Web.Configuration.Compiler this[string language] { get; }
member this.Item(string) : System.Web.Configuration.Compiler
Default Public ReadOnly Property Item(language As String) As Compiler

パラメーター

language
String

コレクション内の Compiler オブジェクトの言語。

プロパティ値

Compiler オブジェクト。

注釈

言語プロバイダーでサポートされている言語名のセミコロン区切りのリストを提供します。

適用対象