CreatingSchema イベント
クライアントで各テーブルにスキーマが作成される前に発生します。
名前空間: Microsoft.Synchronization.Data.SqlServerCe
アセンブリ: Microsoft.Synchronization.Data.SqlServerCe (Microsoft.Synchronization.Data.SqlServerCe.dll 内)
構文
'宣言
Public Event CreatingSchema As EventHandler(Of CreatingSchemaEventArgs)
'使用
Dim instance As SqlCeClientSyncProvider
Dim handler As EventHandler(Of CreatingSchemaEventArgs)
AddHandler instance.CreatingSchema, handler
public event EventHandler<CreatingSchemaEventArgs> CreatingSchema
public:
event EventHandler<CreatingSchemaEventArgs^>^ CreatingSchema {
void add (EventHandler<CreatingSchemaEventArgs^>^ value);
void remove (EventHandler<CreatingSchemaEventArgs^>^ value);
}
member CreatingSchema : IEvent<EventHandler<CreatingSchemaEventArgs>,
CreatingSchemaEventArgs>