DirectoryEntry.Exists(String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Détermine si le chemin d’accès spécifié représente une entrée réelle dans le service d’annuaire.
public:
static bool Exists(System::String ^ path);
public static bool Exists (string path);
static member Exists : string -> bool
Public Shared Function Exists (path As String) As Boolean
Paramètres
- path
- String
Chemin d'accès de l'entrée à vérifier.
Retours
true
si le chemin d'accès spécifié représente une entrée valide dans le service d'annuaire ; sinon, false
.
Exemples
L’exemple suivant prend un argument et détermine si le chemin correspond à un valide DirectoryEntry.
Dim myADSPath As String = "LDAP://onecity/CN=Users,DC=onecity,DC=corp,DC=fabrikam,DC=com"
' Determine whether the given path is correct for the DirectoryEntry.
If DirectoryEntry.Exists(myADSPath) Then
Console.WriteLine("The path {0} is valid",myADSPath)
Else
Console.WriteLine("The path {0} is invalid",myADSPath)
End If
string myADSPath ="LDAP://onecity/CN=Users,DC=onecity,DC=corp,DC=fabrikam,DC=com";
// Determine whether the given path is correct for the DirectoryEntry.
if (DirectoryEntry.Exists(myADSPath))
{
Console.WriteLine("The path {0} is valid",myADSPath);
}
else
{
Console.WriteLine("The path {0} is invalid",myADSPath);
}
String^ myADSPath = "LDAP://onecity/CN=Users,DC=onecity,DC=corp,DC=fabrikam,DC=com";
// Determine whether the given path is correct for the DirectoryEntry.
if (DirectoryEntry::Exists(myADSPath))
{
Console::WriteLine("The path {0} is valid", myADSPath);
}
else
{
Console::WriteLine("The path {0} is invalid", myADSPath);
}