Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
在此上载事务中获取指定的上载表数据。
Public Function GetUploadedTableByName( ByVal table_name As String ) As UploadedTableData
public UploadedTableData GetUploadedTableByName(string table_name)
table_name 想要获取其上载数据的表的名称
给定表名的上载数据;如果未找到,则为空值。
假定对 handle_UploadData 同步事件使用名为 HandleUpload 的方法,则以下示例使用 GetUploadedTableByName 方法返回 remoteOrders 表的 UploadedTableData 实例:
// The method used for the handle_UploadData event. public void HandleUpload(UploadData ut) { UploadedTableData uploaded_t1 = ut.GetUploadedTableByName("remoteOrders"); // ... }