IgnoreDeviceFilterElementCollection.Item[] 属性

定义

从集合中获取指定的 IgnoreDeviceFilterElement 对象。

重载

Item[Int32]

从集合中的指定的索引处获取 IgnoreDeviceFilterElement 对象。

Item[String]

使用指定 IgnoreDeviceFilterElement 对象的名称从集合中获取该对象。

Item[Int32]

从集合中的指定的索引处获取 IgnoreDeviceFilterElement 对象。

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

参数

index
Int32

要获取的筛选器对象的索引。

属性值

指定的筛选器对象。

适用于

Item[String]

使用指定 IgnoreDeviceFilterElement 对象的名称从集合中获取该对象。

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

参数

name
String

要获取的筛选器对象的名称。

属性值

指定的筛选器对象。

适用于