SchemaCreatedEventArgs Constructor
Initializes a new instance of the SchemaCreatedEventArgs class by using synchronization table, schema, connection, and transaction parameters.
Assembly: Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)
public:
SchemaCreatedEventArgs(
SyncTable^ syncTable,
SyncSchema^ syncSchema,
IDbConnection^ connection,
IDbTransaction^ transaction
)
Parameters
- syncTable
- Type: Microsoft.Synchronization.Data::SyncTable
A SyncTable object that contains settings for the table that was created.
- syncSchema
- Type: Microsoft.Synchronization.Data::SyncSchema
A SyncSchema object. This is a DataSet that contains schema information for the table that was created.
- connection
- Type: System.Data::IDbConnection
An IDbConnection object that contains a connection to the client or server database.
- transaction
- Type: System.Data::IDbTransaction
An IDbTransaction object that contains the transaction within which the schema was created.
| Exception | Condition |
|---|---|
| ArgumentNullException | syncTable is a nullptr. |
Show: