SearchResult.Path プロパティ

定義

SearchResult のパスを取得します。

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

プロパティ値

SearchResult のパス。

次の例は、 の例 SearchResultの抜粋です。 元の例では、目的のパスを持つ新しい DirectoryEntry オブジェクトを作成し、 メソッドを FindOne 使用して検索を開始します。 検索を実行した後、この例では メソッドを GetDirectoryEntry 使用して、検索結果で識別されるライブ ディレクトリ エントリを取得します。

この例では、検索結果から プロパティを Path 解析する方法を示します。

Dim mySearchResultPath As String = mySearchResult.Path  
Console.WriteLine("The path for the 'mySearchResult' search result is : {0}" + _  
                  ControlChars.Newline, mySearchResultPath)  
string mySearchResultPath = mySearchResult.Path;  
Console.WriteLine("The path for the 'mySearchResult' search "  
                  + "result is : {0}\n", mySearchResultPath);  
String^ mySearchResultPath = mySearchResult->Path;  
Console::WriteLine("The path for the 'mySearchResult' search result is : {0}\n", mySearchResultPath);  

注釈

プロパティはPath、Active Directory Domain Services階層内のこのエントリを一意に識別します。 エントリは常に、このパスを使用して取得できます。

適用対象