Configuration.GetLocationPaths 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得組態檔中所指定之所有位置路徑的陣列。
public:
cli::array <System::String ^> ^ GetLocationPaths();
public string[] GetLocationPaths ();
member this.GetLocationPaths : unit -> string[]
Public Function GetLocationPaths () As String()
傳回
String[]
組態檔中指定的所有位置路徑陣列。
範例
下列範例會取得系統管理組態的位置路徑。
public void GetGetLocationPaths(ServerManager manager)
{
Configuration config = manager.GetAdministrationConfiguration();
string[] paths = config.GetLocationPaths();
Console.WriteLine("There are " + paths.Length.ToString() + " paths.");
foreach (string path in paths)
{
Console.WriteLine("\t{0}", path);
}
}