Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Initializes a new instance of the FeedSyncServices class that contains the specified ID format schema, replica ID, and ID converter.
Namespace: Microsoft.Synchronization.FeedSync
Assembly: Microsoft.Synchronization (in Microsoft.Synchronization.dll)
Syntax
'Declaration
Public Sub New ( _
idFormats As SyncIdFormatGroup, _
localEndpointId As SyncId, _
idConverter As FeedIdConverter _
)
'Usage
Dim idFormats As SyncIdFormatGroup
Dim localEndpointId As SyncId
Dim idConverter As FeedIdConverter
Dim instance As New FeedSyncServices(idFormats, _
localEndpointId, idConverter)
public FeedSyncServices(
SyncIdFormatGroup idFormats,
SyncId localEndpointId,
FeedIdConverter idConverter
)
public:
FeedSyncServices(
SyncIdFormatGroup^ idFormats,
SyncId^ localEndpointId,
FeedIdConverter^ idConverter
)
new :
idFormats:SyncIdFormatGroup *
localEndpointId:SyncId *
idConverter:FeedIdConverter -> FeedSyncServices
public function FeedSyncServices(
idFormats : SyncIdFormatGroup,
localEndpointId : SyncId,
idConverter : FeedIdConverter
)
Parameters
- idFormats
Type: Microsoft.Synchronization.SyncIdFormatGroup
The ID format schema of the provider.
- localEndpointId
Type: Microsoft.Synchronization.SyncId
The replica ID that is associated with the FeedSync feed.
- idConverter
Type: Microsoft.Synchronization.FeedSync.FeedIdConverter
A converter to translate IDs between the FeedSync XML format and the provider format.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | idFormats or localEndpointId is a null reference (Nothing in Visual Basic). |
| ArgumentException | idFormats or localEndpointId are fixed length. |
| SyncIdFormatMismatchException |
|