ClientTargetCollection.Item[] 属性

定义

从集合中获取 ClientTarget

重载

Item[Int32]

获取位于指定索引位置的 ClientTarget 对象。

Item[String]

获取具有指定名称的 ClientTarget 对象。

Item[Int32]

获取位于指定索引位置的 ClientTarget 对象。

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

参数

index
Int32

对象的集合索引。

属性值

指定索引处的 ClientTarget 对象。

适用于

Item[String]

获取具有指定名称的 ClientTarget 对象。

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

参数

name
String

用户代理的名称。

属性值

具有指定名称的 ClientTarget 对象。

适用于