OnStartTableDownload 委派
事件之使用者定義的委派,此委派會在開始從伺服器下載資料表變更時引發。
命名空間: System.Data.SqlServerCe
組件: System.Data.SqlServerCe (在 System.Data.SqlServerCe.dll 中)
語法
'宣告
Public Delegate Sub OnStartTableDownload ( _
ar As IAsyncResult, _
tableName As String _
)
'用途
Dim instance As New OnStartTableDownload(AddressOf HandlerMethod)
public delegate void OnStartTableDownload(
IAsyncResult ar,
string tableName
)
public delegate void OnStartTableDownload(
IAsyncResult^ ar,
String^ tableName
)
type OnStartTableDownload =
delegate of
ar:IAsyncResult *
tableName:string -> unit
JScript 支援使用委派,但不支援新的宣告。
參數
- ar
型別:System. . :: . .IAsyncResult
由 BeginSynchronize 方法所傳回的 IAsyncResult 介面。
- tableName
型別:System. . :: . .String
要從伺服器下載的資料表名稱。
備註
從伺服器下載資料庫中每一個資料表的變更部分時,便會使用到這個委派。