共用方式為


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

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

Compiler 物件。

備註

提供語言提供者所支援的語言名稱清單(以分號分隔)。

適用於