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 对象。

注解

提供语言提供程序支持的语言名称的分号分隔列表。

适用于