ProxyWebPartConnectionCollection.Item[] 属性

定义

根据索引或唯一标识符,使特定连接成员可以添加到集合或从集合中检索。

重载

Item[Int32]

根据索引号所指示的项在集合中的位置,获取或设置集合中连接项。

Item[String]

根据唯一标识符返回集合中的特定成员。

Item[Int32]

根据索引号所指示的项在集合中的位置,获取或设置集合中连接项。

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

参数

index
Int32

一个整数,指示集合成员的索引。

属性值

位于集合中指定索引处的 WebPartConnection

注解

通过 Item[] 属性,可以使用表示项在集合中的ProxyWebPartConnectionCollection序号的索引号访问WebPartConnection集合中的 对象。

另请参阅

适用于

Item[String]

根据唯一标识符返回集合中的特定成员。

public:
 property System::Web::UI::WebControls::WebParts::WebPartConnection ^ default[System::String ^] { System::Web::UI::WebControls::WebParts::WebPartConnection ^ get(System::String ^ id); };
public System.Web.UI.WebControls.WebParts.WebPartConnection this[string id] { get; }
member this.Item(string) : System.Web.UI.WebControls.WebParts.WebPartConnection
Default Public ReadOnly Property Item(id As String) As WebPartConnection

参数

id
String

一个字符串,包含集合中特定连接的 ID。

属性值

其 ID 与 id 参数的值匹配的第一个 WebPartConnection。 如果未找到匹配项,则返回 null

注解

此属性通过执行不区分大小写的比较返回 WebPartConnection 具有指定 ID 的对象。

另请参阅

适用于