WebBaseEventCollection.Item[Int32] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取位于指定索引位置的 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 对象。
例外
指定的索引在集合范围之外。
示例
下面的代码示例说明如何使用 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