Site.GetMigrationJobStatus 方法
這個方法查詢佇列中的指定的移轉工作狀態。這是選擇性的核取可呼叫CreateMigrationJob方法之後,並使用該呼叫所傳回的識別碼。完成的移轉工作後,它會不會再顯示在佇列中,您應該檢查通知佇列中及/或記錄的詳細狀態的輸出。
命名空間: Microsoft.SharePoint.Client
組件: Microsoft.SharePoint.Client.Silverlight (在 Microsoft.SharePoint.Client.Silverlight.dll 中); Microsoft.SharePoint.Client.Phone (在 Microsoft.SharePoint.Client.Phone.dll 中) Microsoft.SharePoint.Client (在 Microsoft.SharePoint.Client.dll 中)
語法
'宣告
Public Function GetMigrationJobStatus ( _
id As Guid _
) As ClientResult(Of MigrationJobState)
'用途
Dim instance As Site
Dim id As Guid
Dim returnValue As ClientResult(Of MigrationJobState)
returnValue = instance.GetMigrationJobStatus(id)
public ClientResult<MigrationJobState> GetMigrationJobStatus(
Guid id
)
參數
id
類型:System.Guid移轉工作CreateMigrationJob方法所傳回的唯一識別碼。
傳回值
類型:Microsoft.SharePoint.Client.ClientResult<MigrationJobState>
移轉工作狀態會傳回使用MigrationJobState物件,如果工作在佇列中找不到。如果工作失敗,則會傳回無 (0) 值。
範例
SPMigrationJobState CurrentJobState = TargetSite.GetMigrationJobStatus(MigrationJobId);