Compartilhar via


DirectorySearcher.Tombstone Propriedade

Definição

Obtém ou define um valor que indica se a pesquisa também deve retornar objetos excluídos que correspondem ao filtro de pesquisa.

public:
 property bool Tombstone { bool get(); void set(bool value); };
public bool Tombstone { get; set; }
[System.DirectoryServices.DSDescription("DSTombstone")]
[System.Runtime.InteropServices.ComVisible(false)]
public bool Tombstone { get; set; }
member this.Tombstone : bool with get, set
[<System.DirectoryServices.DSDescription("DSTombstone")>]
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.Tombstone : bool with get, set
Public Property Tombstone As Boolean

Valor da propriedade

true se os objetos excluídos devem ser incluídos na pesquisa; false Caso contrário. O valor padrão é false.

Atributos

Exemplos

O exemplo de C# a seguir mostra como definir a Tombstone propriedade truecomo .

using System.DirectoryServices;  
...  
// Create a DirectorySearcher object.  
DirectorySearcher src = new DirectorySearcher("(isDeleted=true)");  
//Set the Tombstone property to true.  
src.Tombstone = true;  
//Use the FindAll method to get search results.  
SearchResultCollection res = src.FindAll();  

Aplica-se a