Sdílet prostřednictvím


DirectorySearcher Konstruktory

Definice

Inicializuje novou instanci DirectorySearcher třídy .

Přetížení

DirectorySearcher()

Inicializuje novou instanci třídy DirectorySearcher s výchozími hodnotami.

DirectorySearcher(DirectoryEntry)

Inicializuje novou instanci DirectorySearcher třídy pomocí zadaného kořenového adresáře vyhledávání.

DirectorySearcher(String)

Inicializuje novou instanci DirectorySearcher třídy se zadaným vyhledávacím filtrem.

DirectorySearcher(DirectoryEntry, String)

Inicializuje novou instanci DirectorySearcher třídy se zadaným vyhledávacím kořenem a vyhledávacím filtrem.

DirectorySearcher(String, String[])

Inicializuje novou instanci DirectorySearcher třídy se zadaným vyhledávacím filtrem a vlastnostmi k načtení.

DirectorySearcher(DirectoryEntry, String, String[])

Inicializuje novou instanci DirectorySearcher třídy se zadaným kořenem vyhledávání, vyhledávacím filtrem a vlastnostmi k načtení.

DirectorySearcher(String, String[], SearchScope)

Inicializuje novou instanci DirectorySearcher třídy se zadaným vyhledávacím filtrem, vlastnostmi k načtení a oborem vyhledávání.

DirectorySearcher(DirectoryEntry, String, String[], SearchScope)

Inicializuje novou instanci DirectorySearcher třídy se zadaným kořenem vyhledávání, vyhledávacím filtrem, vlastnostmi k načtení a oborem vyhledávání.

DirectorySearcher()

Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs

Inicializuje novou instanci třídy DirectorySearcher s výchozími hodnotami.

public:
 DirectorySearcher();
public DirectorySearcher ();
Public Sub New ()

Poznámky

Následující tabulka uvádí počáteční hodnoty vlastností objektu DirectorySearcher .

Vlastnost Počáteční hodnota
SearchRoot Odkaz s hodnotou null (Nothing v jazyce Visual Basic)
Filter "(objectClass=*)"
PropertiesToLoad Prázdný StringCollection objekt
SearchScope Subtree

Viz také

Platí pro

DirectorySearcher(DirectoryEntry)

Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs

Inicializuje novou instanci DirectorySearcher třídy pomocí zadaného kořenového adresáře vyhledávání.

public:
 DirectorySearcher(System::DirectoryServices::DirectoryEntry ^ searchRoot);
public DirectorySearcher (System.DirectoryServices.DirectoryEntry searchRoot);
public DirectorySearcher (System.DirectoryServices.DirectoryEntry? searchRoot);
new System.DirectoryServices.DirectorySearcher : System.DirectoryServices.DirectoryEntry -> System.DirectoryServices.DirectorySearcher
Public Sub New (searchRoot As DirectoryEntry)

Parametry

searchRoot
DirectoryEntry

Uzel v hierarchii Active Directory Domain Services, kde se vyhledávání spouští. Vlastnost SearchRoot je inicializována na tuto hodnotu.

Poznámky

Následující tabulka uvádí počáteční hodnoty vlastností objektu DirectorySearcher .

Vlastnost Počáteční hodnota
Filter "(objectClass=*)"
PropertiesToLoad Prázdný StringCollection objekt
SearchScope Subtree

Viz také

Platí pro

DirectorySearcher(String)

Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs

Inicializuje novou instanci DirectorySearcher třídy se zadaným vyhledávacím filtrem.

public:
 DirectorySearcher(System::String ^ filter);
public DirectorySearcher (string filter);
public DirectorySearcher (string? filter);
new System.DirectoryServices.DirectorySearcher : string -> System.DirectoryServices.DirectorySearcher
Public Sub New (filter As String)

Parametry

filter
String

Řetězec vyhledávacího filtru ve formátu LDAP (Lightweight Directory Access Protocol). Vlastnost Filter je inicializována na tuto hodnotu.

Poznámky

Následující tabulka uvádí počáteční hodnoty vlastností objektu DirectorySearcher .

Vlastnost Počáteční hodnota
SearchRoot Odkaz s hodnotou null (Nothing v jazyce Visual Basic)
PropertiesToLoad Prázdný StringCollection objekt
SearchScope Subtree

Viz také

Platí pro

DirectorySearcher(DirectoryEntry, String)

Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs

Inicializuje novou instanci DirectorySearcher třídy se zadaným vyhledávacím kořenem a vyhledávacím filtrem.

public:
 DirectorySearcher(System::DirectoryServices::DirectoryEntry ^ searchRoot, System::String ^ filter);
public DirectorySearcher (System.DirectoryServices.DirectoryEntry searchRoot, string filter);
public DirectorySearcher (System.DirectoryServices.DirectoryEntry? searchRoot, string? filter);
new System.DirectoryServices.DirectorySearcher : System.DirectoryServices.DirectoryEntry * string -> System.DirectoryServices.DirectorySearcher
Public Sub New (searchRoot As DirectoryEntry, filter As String)

Parametry

searchRoot
DirectoryEntry

Uzel v hierarchii Active Directory Domain Services, kde se vyhledávání spouští. Vlastnost SearchRoot je inicializována na tuto hodnotu.

filter
String

Řetězec vyhledávacího filtru ve formátu LDAP (Lightweight Directory Access Protocol). Vlastnost Filter je inicializována na tuto hodnotu.

Poznámky

Následující tabulka uvádí počáteční hodnoty vlastností objektu DirectorySearcher .

Vlastnost Počáteční hodnota
PropertiesToLoad Prázdný StringCollection objekt.
SearchScope Subtree

Viz také

Platí pro

DirectorySearcher(String, String[])

Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs

Inicializuje novou instanci DirectorySearcher třídy se zadaným vyhledávacím filtrem a vlastnostmi k načtení.

public:
 DirectorySearcher(System::String ^ filter, cli::array <System::String ^> ^ propertiesToLoad);
public DirectorySearcher (string filter, string[] propertiesToLoad);
public DirectorySearcher (string? filter, string[]? propertiesToLoad);
new System.DirectoryServices.DirectorySearcher : string * string[] -> System.DirectoryServices.DirectorySearcher
Public Sub New (filter As String, propertiesToLoad As String())

Parametry

filter
String

Řetězec vyhledávacího filtru ve formátu LDAP (Lightweight Directory Access Protocol). Vlastnost Filter je inicializována na tuto hodnotu.

propertiesToLoad
String[]

Sada vlastností, které se mají načíst během hledání. Vlastnost PropertiesToLoad je inicializována na tuto hodnotu.

Poznámky

Následující tabulka uvádí počáteční hodnoty vlastností objektu DirectorySearcher .

Vlastnost Počáteční hodnota
SearchRoot Odkaz s hodnotou null (Nothing v jazyce Visual Basic)
SearchScope Subtree

Viz také

Platí pro

DirectorySearcher(DirectoryEntry, String, String[])

Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs

Inicializuje novou instanci DirectorySearcher třídy se zadaným kořenem vyhledávání, vyhledávacím filtrem a vlastnostmi k načtení.

public:
 DirectorySearcher(System::DirectoryServices::DirectoryEntry ^ searchRoot, System::String ^ filter, cli::array <System::String ^> ^ propertiesToLoad);
public DirectorySearcher (System.DirectoryServices.DirectoryEntry searchRoot, string filter, string[] propertiesToLoad);
public DirectorySearcher (System.DirectoryServices.DirectoryEntry? searchRoot, string? filter, string[]? propertiesToLoad);
new System.DirectoryServices.DirectorySearcher : System.DirectoryServices.DirectoryEntry * string * string[] -> System.DirectoryServices.DirectorySearcher
Public Sub New (searchRoot As DirectoryEntry, filter As String, propertiesToLoad As String())

Parametry

searchRoot
DirectoryEntry

Uzel v hierarchii Active Directory Domain Services, kde se vyhledávání spouští. Vlastnost SearchRoot je inicializována na tuto hodnotu.

filter
String

Řetězec vyhledávacího filtru ve formátu LDAP (Lightweight Directory Access Protocol). Vlastnost Filter je inicializována na tuto hodnotu.

propertiesToLoad
String[]

Sada vlastností, které jsou načteny během hledání. Vlastnost PropertiesToLoad je inicializována na tuto hodnotu.

Poznámky

Následující tabulka uvádí počáteční hodnoty vlastností objektu DirectorySearcher .

Vlastnost Počáteční hodnota
SearchScope Subtree

Viz také

Platí pro

DirectorySearcher(String, String[], SearchScope)

Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs

Inicializuje novou instanci DirectorySearcher třídy se zadaným vyhledávacím filtrem, vlastnostmi k načtení a oborem vyhledávání.

public:
 DirectorySearcher(System::String ^ filter, cli::array <System::String ^> ^ propertiesToLoad, System::DirectoryServices::SearchScope scope);
public DirectorySearcher (string filter, string[] propertiesToLoad, System.DirectoryServices.SearchScope scope);
public DirectorySearcher (string? filter, string[]? propertiesToLoad, System.DirectoryServices.SearchScope scope);
new System.DirectoryServices.DirectorySearcher : string * string[] * System.DirectoryServices.SearchScope -> System.DirectoryServices.DirectorySearcher
Public Sub New (filter As String, propertiesToLoad As String(), scope As SearchScope)

Parametry

filter
String

Řetězec vyhledávacího filtru ve formátu LDAP (Lightweight Directory Access Protocol). Vlastnost Filter je inicializována na tuto hodnotu.

propertiesToLoad
String[]

Sada vlastností, které se mají načíst během hledání. Vlastnost PropertiesToLoad je inicializována na tuto hodnotu.

scope
SearchScope

Obor hledání, který server sleduje. Vlastnost SearchScope je inicializována na tuto hodnotu.

Poznámky

Následující tabulka uvádí počáteční hodnoty vlastností objektu DirectorySearcher .

Vlastnost Počáteční hodnota
SearchRoot Odkaz s hodnotou null (Nothing v jazyce Visual Basic)

Viz také

Platí pro

DirectorySearcher(DirectoryEntry, String, String[], SearchScope)

Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs
Zdroj:
DirectorySearcher.cs

Inicializuje novou instanci DirectorySearcher třídy se zadaným kořenem vyhledávání, vyhledávacím filtrem, vlastnostmi k načtení a oborem vyhledávání.

public:
 DirectorySearcher(System::DirectoryServices::DirectoryEntry ^ searchRoot, System::String ^ filter, cli::array <System::String ^> ^ propertiesToLoad, System::DirectoryServices::SearchScope scope);
public DirectorySearcher (System.DirectoryServices.DirectoryEntry searchRoot, string filter, string[] propertiesToLoad, System.DirectoryServices.SearchScope scope);
public DirectorySearcher (System.DirectoryServices.DirectoryEntry? searchRoot, string? filter, string[]? propertiesToLoad, System.DirectoryServices.SearchScope scope);
new System.DirectoryServices.DirectorySearcher : System.DirectoryServices.DirectoryEntry * string * string[] * System.DirectoryServices.SearchScope -> System.DirectoryServices.DirectorySearcher
Public Sub New (searchRoot As DirectoryEntry, filter As String, propertiesToLoad As String(), scope As SearchScope)

Parametry

searchRoot
DirectoryEntry

Uzel v hierarchii Active Directory Domain Services, kde se vyhledávání spouští. Vlastnost SearchRoot je inicializována na tuto hodnotu.

filter
String

Řetězec vyhledávacího filtru ve formátu LDAP (Lightweight Directory Access Protocol). Vlastnost Filter je inicializována na tuto hodnotu.

propertiesToLoad
String[]

Sada vlastností, které se mají načíst během hledání. Vlastnost PropertiesToLoad je inicializována na tuto hodnotu.

scope
SearchScope

Obor hledání, který server sleduje. Vlastnost SearchScope je inicializována na tuto hodnotu.

Viz také

Platí pro