.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
Perform a synchronization.

Namespace: Org.IdentityConnectors.Framework.Spi.Operations
Assembly: Framework (in Framework.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
void Sync(
	ObjectClass objClass,
	SyncToken token,
	SyncResultsHandler handler,
	OperationOptions options
)

Parameters

objClass
Type: Org.IdentityConnectors.Framework.Common.Objects..::..ObjectClass
The object class to synchronize. Must not be null.
token
Type: Org.IdentityConnectors.Framework.Common.Objects..::..SyncToken
The token representing the last token from the previous sync. Should be null if this is the first sync for the given resource.
handler
Type: Org.IdentityConnectors.Framework.Common.Objects..::..SyncResultsHandler
The result handler Must not be null.
options
Type: Org.IdentityConnectors.Framework.Common.Objects..::..OperationOptions
additional options that impact the way this operation is run. If the caller passes null, the framework will convert this into an empty set of options, so SPI need not worry about this ever being null.

See Also