DbChangesSelectedEventArgs.Connection Property
Gets an IDbConnection object for the connection over which changes are selected during synchronization.
Namespace: Microsoft.Synchronization.Data
Assembly: Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)
Syntax
'Declaration
Public ReadOnly Property Connection As IDbConnection
Get
'Usage
Dim instance As DbChangesSelectedEventArgs
Dim value As IDbConnection
value = instance.Connection
public IDbConnection Connection { get; }
public:
property IDbConnection^ Connection {
IDbConnection^ get ();
}
member Connection : IDbConnection
function get Connection () : IDbConnection
Property Value
Type: System.Data.IDbConnection
An IDbConnection object that contains a connection to the peer database.
Remarks
To access a peer database over the same connection and within the same transaction that Sync Framework uses, use the connection exposed by this property and the transaction exposed by the Transaction property.