次の方法で共有


WebApplicationInformation.ApplicationPath プロパティ

定義

アプリケーションの物理パスを取得します。

public:
 property System::String ^ ApplicationPath { System::String ^ get(); };
public string ApplicationPath { get; }
member this.ApplicationPath : string
Public ReadOnly Property ApplicationPath As String

プロパティ値

アプリケーションの物理パス。

次のコード例は、アプリケーションの物理パスを取得する方法を示しています。

public string GetApplicationPath()
{
    // Get the name of the application  path.
    return (string.Format(
        "Application path: {0}",
        ApplicationInformation.ApplicationPath));
}
Public Function GetApplicationPath() As String
    ' Get the name of the application  path.
    Return String.Format( _
    "Application path: {0}", _
    ApplicationInformation.ApplicationPath())
End Function 'GetApplicationPath

注釈

このプロパティには、適切なアクセス許可が必要です。 「アクセス許可」セクションを参照してください。

適用対象