WebBaseEventCollection.Item[Int32] 属性

定义

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

public:
 property System::Web::Management::WebBaseEvent ^ default[int] { System::Web::Management::WebBaseEvent ^ get(int index); };
public System.Web.Management.WebBaseEvent this[int index] { get; }
member this.Item(int) : System.Web.Management.WebBaseEvent
Default Public ReadOnly Property Item(index As Integer) As WebBaseEvent

参数

index
Int32

您想检索的 WebBaseEvent 对象的集合索引。

属性值

WebBaseEvent

指定索引处的 WebBaseEvent 对象。

例外

指定的索引在集合范围之外。

示例

下面的代码示例说明如何使用 Item[] 属性。

// Get the event with the specified index.
public static WebBaseEvent GetItem(int index)
{
    return events[index];
}
' Get the event with the specified index.
Public Shared Function GetItem(ByVal index _
As Integer) As WebBaseEvent
    Return events(index)

End Function 'GetItem

适用于

另请参阅