共用方式為


SharepointListAdapter.Query 方法

從關聯的資料配接器讀取資料。

**命名空間:**Microsoft.Office.Interop.InfoPath
**組件:**Microsoft.Office.Interop.InfoPath (於 microsoft.office.interop.infopath.dll 中)

語法

'宣告
<DispIdAttribute(9)> _
Sub Query
'用途
Dim instance As SharepointListAdapter

instance.Query
[DispIdAttribute(9)] 
void Query ()

備註

如果 QueryAllowed 屬性為 false,則 Query 方法會失敗。

範例

在下列範例中,叫用以現有 [資料連接] 連線至 SharePoint 清單 ("SharePoint list") 的 Query 方法。如果 Query 方法失敗,則會顯示訊息方塊:

SharepointListAdapter SPList = ((SharepointListAdapter)thisXDocument.DataAdapters[“SharePoint list”]);
try
{
 SPList.Query();
}
catch (Exception ex)
{
 thisXDocument.UI.Alert("Failed to query.\n\n" + ex.Message);
}

請參閱

參考

SharepointListAdapter 介面
SharepointListAdapter 成員
Microsoft.Office.Interop.InfoPath 命名空間