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

Применяется к

См. также раздел