ProtocolCollection.Item[] 属性

定义

获取指定的 ProtocolElement 集合项。

重载

Item[Int32]

此 API 支持产品基础结构,不能在代码中直接使用。

获取集合中指定索引位置的 ProtocolElement 对象。

Item[String]

此 API 支持产品基础结构,不能在代码中直接使用。

获取具有指定的键的第一项的值。

注解

Item[] 在 .NET Framework 3.5 中引入。 有关详细信息,请参见版本和依赖关系

Item[Int32]

获取集合中指定索引位置的 ProtocolElement 对象。

此 API 支持产品基础结构,不能在代码中直接使用。

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

参数

index
Int32

ProtocolElement 实例中 ProtocolCollection 对象的索引。

属性值

ProtocolElement

ProtocolElement 对象。

注解

Item[] 在 .NET Framework 3.5 中引入。 有关详细信息,请参见版本和依赖关系

适用于

Item[String]

获取具有指定的键的第一项的值。

此 API 支持产品基础结构,不能在代码中直接使用。

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

参数

name
String

要获取的项的键。

属性值

ProtocolElement

如果找到了表示第一个具有指定键的项的值的 ProtocolElement 对象,则为该对象;否则为 null

注解

Item[] 在 .NET Framework 3.5 中引入。 有关详细信息,请参见版本和依赖关系

适用于