次の方法で共有


WebBaseEvent.ApplicationInformation プロパティ

定義

監視中の現在のアプリケーションに関する情報を格納している WebApplicationInformation オブジェクトを取得します。

public:
 static property System::Web::Management::WebApplicationInformation ^ ApplicationInformation { System::Web::Management::WebApplicationInformation ^ get(); };
public static System.Web.Management.WebApplicationInformation ApplicationInformation { get; }
static member ApplicationInformation : System.Web.Management.WebApplicationInformation
Public Shared ReadOnly Property ApplicationInformation As 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

適用対象

こちらもご覧ください