RazorViewEngine.GetAbsolutePath(String, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的 pagePath
轉換為絕對,除非 已經是絕對的,否則 pagePath
會相對於 executingFilePath
。
public:
virtual System::String ^ GetAbsolutePath(System::String ^ executingFilePath, System::String ^ pagePath);
public string GetAbsolutePath (string executingFilePath, string pagePath);
public string? GetAbsolutePath (string? executingFilePath, string? pagePath);
abstract member GetAbsolutePath : string * string -> string
override this.GetAbsolutePath : string * string -> string
Public Function GetAbsolutePath (executingFilePath As String, pagePath As String) As String
參數
- executingFilePath
- String
目前執行之頁面的絕對路徑,如果有的話。
- pagePath
- String
頁面的路徑。
傳回
executingFilePath
和 pagePath
if pagePath
的組合是相對路徑。 否則,值 pagePath
(未變更) 。