SqlCeSyncDescriptionBuilder.GetDescriptionForScope Method (String, String, )
Returns a DbSyncScopeDescription object that contains information about the specified scope that is defined for a SQL Server Compact database.
Namespace: Microsoft.Synchronization.Data.SqlServerCe
Assembly: Microsoft.Synchronization.Data.SqlServerCe (in Microsoft.Synchronization.Data.SqlServerCe.dll)
Syntax
'Declaration
Public Shared Function GetDescriptionForScope ( _
scopeName As String, _
objectPrefix As String, _
connection As SqlCeConnection _
) As DbSyncScopeDescription
'Usage
Dim scopeName As String
Dim objectPrefix As String
Dim connection As SqlCeConnection
Dim returnValue As DbSyncScopeDescription
returnValue = SqlCeSyncDescriptionBuilder.GetDescriptionForScope(scopeName, _
objectPrefix, connection)
public static DbSyncScopeDescription GetDescriptionForScope(
string scopeName,
string objectPrefix,
SqlCeConnection connection
)
public:
static DbSyncScopeDescription^ GetDescriptionForScope(
String^ scopeName,
String^ objectPrefix,
SqlCeConnection^ connection
)
static member GetDescriptionForScope :
scopeName:string *
objectPrefix:string *
connection:SqlCeConnection -> DbSyncScopeDescription
public static function GetDescriptionForScope(
scopeName : String,
objectPrefix : String,
connection : SqlCeConnection
) : DbSyncScopeDescription
Parameters
- scopeName
Type: System.String
The name of the scope for which to retrieve a description.
- objectPrefix
Type: System.String
The optional prefix that is used to identify objects that Sync Framework creates.
- connection
Type: SqlCeConnection
A SqlCeConnection object that contains a connection to the database.
Return Value
Type: Microsoft.Synchronization.Data.DbSyncScopeDescription
A DbSyncScopeDescription object that contains information about the specified scope.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | connection is a null reference (Nothing in Visual Basic). |
ArgumentException | scopeName is a null reference (Nothing in Visual Basic) or empty. |
See Also
Reference
SqlCeSyncDescriptionBuilder Class