共用方式為


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

適用於

另請參閱