SqlSyncProvider Constructor (String, SqlConnection, String, String)

Initializes a new instance of the SqlSyncProvider class for the specified scope name, connection, synchronization object prefix, and object schema.

Namespace:  Microsoft.Synchronization.Data.SqlServer
Assembly:  Microsoft.Synchronization.Data.SqlServer (in Microsoft.Synchronization.Data.SqlServer.dll)

Syntax

'Declaration
Public Sub New ( _
    scopeName As String, _
    connection As SqlConnection, _
    objectPrefix As String, _
    objectSchema As String _
)
'Usage
Dim scopeName As String
Dim connection As SqlConnection
Dim objectPrefix As String
Dim objectSchema As String

Dim instance As New SqlSyncProvider(scopeName, _
    connection, objectPrefix, objectSchema)
public SqlSyncProvider(
    string scopeName,
    SqlConnection connection,
    string objectPrefix,
    string objectSchema
)
public:
SqlSyncProvider(
    String^ scopeName, 
    SqlConnection^ connection, 
    String^ objectPrefix, 
    String^ objectSchema
)
new : 
        scopeName:string * 
        connection:SqlConnection * 
        objectPrefix:string * 
        objectSchema:string -> SqlSyncProvider
public function SqlSyncProvider(
    scopeName : String, 
    connection : SqlConnection, 
    objectPrefix : String, 
    objectSchema : String
)

Parameters

  • scopeName
    Type: System.String
    The name of the scope, which defines the set of tables (with optional filters) to synchronize.
  • objectPrefix
    Type: System.String
    The prefix that is optionally specified for the ObjectPrefix property, to identify objects that Sync Framework creates.
  • objectSchema
    Type: System.String
    The database schema in which Sync Framework creates objects.

Remarks

Scopes are defined during provisioning by using the DbSyncScopeDescription object.

See Also

Reference

SqlSyncProvider Class

SqlSyncProvider Overload

Microsoft.Synchronization.Data.SqlServer Namespace