SearchResult.Path プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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階層内のこのエントリを一意に識別します。 エントリは常に、このパスを使用して取得できます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET