Aracılığıyla paylaş


WebApplicationInformation.ApplicationPath Özellik

Tanım

Uygulamanın fiziksel yolunu alır.

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

Özellik Değeri

Uygulama fiziksel yolu.

Örnekler

Aşağıdaki kod örneği, uygulama fiziksel yolunun nasıl elde edilir gösterir.

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

Açıklamalar

Bu özelliğe erişim için uygun izinler gerekiyor. İzinler bölümüne bakın.

Şunlara uygulanır