EventMappingSettingsCollection.Item[] 属性

定义

获取或设置指定的 EventMappingSettings 对象。

重载

Item[Int32]

获取或设置位于指定索引位置的 EventMappingSettings 对象。

Item[String]

根据集合中的指定键获取 EventMappingSettings 对象。

Item[Int32]

获取或设置位于指定索引位置的 EventMappingSettings 对象。

public:
 property System::Web::Configuration::EventMappingSettings ^ default[int] { System::Web::Configuration::EventMappingSettings ^ get(int index); void set(int index, System::Web::Configuration::EventMappingSettings ^ value); };
public System.Web.Configuration.EventMappingSettings this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.EventMappingSettings with get, set
Default Public Property Item(index As Integer) As EventMappingSettings

参数

index
Int32

集合中 EventMappingSettings 对象的有效索引。

属性值

EventMappingSettings

指定索引处的 EventMappingSettings 对象;如果该索引处没有对象,则为 null

示例

下面的代码示例说明如何使用 Item[] 方法。 此代码示例是为类提供的大型示例的 HealthMonitoringSection 一部分。

eventMappingSetting = healthMonitoringSection.EventMappings[i];
eventMappingSetting = healthMonitoringSection.EventMappings(i)

另请参阅

适用于

Item[String]

根据集合中的指定键获取 EventMappingSettings 对象。

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

参数

key
String

集合中包含的 EventMappingSettings 对象的名称。

属性值

EventMappingSettings

一个 EventMappingSettings 对象。

适用于