DataServiceCollection<T>.LoadNextPartialSetAsync 方法
將下一頁資料載入集合中。
僅受到適用於 Silverlight 的 WCF Data Services 5.0 用戶端支援。
命名空間: System.Data.Services.Client
組件: Microsoft.Data.Services.Client (在 Microsoft.Data.Services.Client.dll 中)
語法
'宣告
Public Function LoadNextPartialSetAsync As Boolean
'用途
Dim instance As DataServiceCollection
Dim returnValue As Boolean
returnValue = instance.LoadNextPartialSetAsync()
public bool LoadNextPartialSetAsync()
public:
bool LoadNextPartialSetAsync()
member LoadNextPartialSetAsync : unit -> bool
public function LoadNextPartialSetAsync() : boolean
傳回值
型別:System.Boolean
Boolean 值,當 DataServiceCollection<T> 有接續 Token 時為 true,否則為 false。
備註
只有當資料服務中啟用分頁,而且可以從 Continuation 屬性存取接續 Token 時,LoadNextPartialSetAsync 方法才會傳回 true 及載入下一頁資料。 當 Continuation 屬性為 nullnull 參考 (在 Visual Basic 中為 Nothing) 時,不會傳送要求給資料服務。 如需詳細資訊,請參閱Creating the Northwind Data Service (WCF Data Services/Silverlight)。
因為 LoadNextPartialSetAsync 方法是非同步的,所以此方法會在收到資料服務的回應之前傳回。 您必須處理 LoadCompleted 事件來存取 QueryOperationResponse<T>,其中包含有關載入作業結果的資訊。 當載入作業完成時,項目便會載入集合中,不論是否處理 LoadCompleted 事件。
LoadNextPartialSetAsync 方法只能在 UI 執行緒上呼叫一次。 要等到引發 LoadCompleted 事件之後,才能再次呼叫此方法。 不論查詢是否成功,都會引發 LoadCompleted 事件。