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