Condividi tramite


SearchResult.Path Proprietà

Definizione

Recupera il percorso per SearchResult.

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

Valore della proprietà

Percorso di SearchResult.

Esempio

L'esempio seguente è un estratto dell'esempio in SearchResult. L'esempio originale crea un nuovo DirectoryEntry oggetto con il percorso desiderato e usa il FindOne metodo per avviare la ricerca. Dopo aver eseguito la ricerca, nell'esempio viene usato il GetDirectoryEntry metodo per recuperare la voce della directory live identificata nei risultati della ricerca.

In questo esempio viene illustrato come analizzare la Path proprietà dal risultato della ricerca.

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);  

Commenti

La Path proprietà identifica in modo univoco questa voce nella gerarchia Active Directory Domain Services. La voce può sempre essere recuperata usando questo percorso.

Si applica a