Share via


SqlSyncProviderScopeConfiguration.AdapterConfigurations Property

Gets or sets a list of SqlSyncProviderAdapterConfiguration objects that are each associated with a table in a SQL Server database.

Namespace: Microsoft.Synchronization.Data.SqlServer
Assembly: Microsoft.Synchronization.Data.SqlServer (in microsoft.synchronization.data.sqlserver.dll)

Syntax

'Declaration
<XmlElementAttribute("Adapter")> _
Public ReadOnly Property AdapterConfigurations As Collection(Of SqlSyncProviderAdapterConfiguration)
'Usage
Dim instance As SqlSyncProviderScopeConfiguration
Dim value As Collection(Of SqlSyncProviderAdapterConfiguration)

value = instance.AdapterConfigurations
[XmlElementAttribute("Adapter")] 
public Collection<SqlSyncProviderAdapterConfiguration> AdapterConfigurations { get; }
[XmlElementAttribute(L"Adapter")] 
public:
property Collection<SqlSyncProviderAdapterConfiguration^>^ AdapterConfigurations {
    Collection<SqlSyncProviderAdapterConfiguration^>^ get ();
}
/** @property */
public Collection<SqlSyncProviderAdapterConfiguration> get_AdapterConfigurations ()
public function get AdapterConfigurations () : Collection<SqlSyncProviderAdapterConfiguration>

Property Value

A list of SqlSyncProviderAdapterConfiguration objects that are each associated with a table in a SQL Server database.

Remarks

Sync Framework uses a SqlSyncProviderAdapterConfiguration object to create a DbSyncAdapter object for each table that is provisioned for synchronization in a SQL Server database. For SqlSyncProvider, you typically do not interact directly with DbSyncAdapter object, but you can use SqlSyncProviderAdapterConfiguration to set the names of the objects that Sync Framework creates in a database. For more information about provisioning and configuration, see How to: Configure and Execute Collaborative Synchronization (SQL Server).

See Also

Reference

SqlSyncProviderScopeConfiguration Class
SqlSyncProviderScopeConfiguration Members
Microsoft.Synchronization.Data.SqlServer Namespace