DirectorySynchronization Class

Definition

Specifies how to synchronize a directory within a domain.

public ref class DirectorySynchronization
public class DirectorySynchronization
type DirectorySynchronization = class
Public Class DirectorySynchronization
Inheritance
DirectorySynchronization

Examples

The following C# example shows how to synchronize a directory.

DirectorySearcher src = new DirectorySearcher("…");
// Initiate dirsync; this means a full synch
src.DirectorySynchronization= new DirectorySynchronization();  

foreach(SearchResult res in src.FindAll() )  
{  
    Console.WriteLine("…");  
}  

// Restart the dirsync   
foreach(SearchResult res in src.FindAll() )  
{  
    Console.WriteLine("…");  
}

Constructors

DirectorySynchronization()

Initializes a new instance of the DirectorySynchronization object.

DirectorySynchronization(Byte[])

Initializes a new instance of the DirectorySynchronization object with a cookie.

DirectorySynchronization(DirectorySynchronization)

Initializes a new instance of the DirectorySynchronization object with a directory synchronization object.

DirectorySynchronization(DirectorySynchronizationOptions)

Initializes a new instance of the DirectorySynchronization object with a directory synchronization option.

DirectorySynchronization(DirectorySynchronizationOptions, Byte[])

Initializes a new instance of the DirectorySynchronization object with a directory synchronization option and cookie.

Properties

Option

Gets or sets the options for the directory synchronization search.

Methods

Copy()

Returns a copy of the current DirectorySynchronization instance.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetDirectorySynchronizationCookie()

Gets the directory synchronization search cookie.

GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ResetDirectorySynchronizationCookie()

Resets the directory synchronization search cookie.

ResetDirectorySynchronizationCookie(Byte[])

Resets the directory synchronization search cookie.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also