WebBaseEvent.ApplicationInformation Свойство

Определение

Получает объект WebApplicationInformation, содержащий сведения о текущем приложении, мониторинг которого осуществляется.

public:
 static property System::Web::Management::WebApplicationInformation ^ ApplicationInformation { System::Web::Management::WebApplicationInformation ^ get(); };
public static System.Web.Management.WebApplicationInformation ApplicationInformation { get; }
member this.ApplicationInformation : System.Web.Management.WebApplicationInformation
Public Shared ReadOnly Property ApplicationInformation As WebApplicationInformation

Значение свойства

WebApplicationInformation

Объект WebApplicationInformation, содержащий сведения о приложении, мониторинг которого осуществляется.

Примеры

В следующем примере кода показано, как получить сведения о приложении.

// Gets the current application information.
public WebApplicationInformation GetEventAppInfo()
{
    // Get the event message.
    WebApplicationInformation appImfo = 
        ApplicationInformation;
    return appImfo;
}
' Gets the current application information.
Public Function GetEventAppInfo() As WebApplicationInformation
    ' Get the event message.
    Dim appImfo As WebApplicationInformation = _
    ApplicationInformation
    Return appImfo

End Function 'GetEventAppInfo

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

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