共用方式為


顯示傳送給收件者的工作要求專案

此範例示範如何顯示收件者收件匣中的所有工作要求專案。

範例

注意事項

下列程式代碼範例是 Microsoft Office Outlook 2007 程式設計應用程式的摘錄。

TaskRequestItem 物件代表將工作指派給另一個使用者的要求。 當收件者收件者收件匣中收到專案時,就會建立 TaskRequestItem 。 在下列程式代碼範例中,ShowTaskRequests 會篩選收件者的收件匣、建立 Table 物件,併為 MessageClass 屬性的值等於 IPM 的每個專案插入一個數據 列。TaskRequest。 然後,收件者收件者 [收件匣] 資料夾中每個工作的主旨會寫入接 程式集合的追蹤接聽程式。

If you use Visual Studio to test this code example, you must first add a reference to the Microsoft Outlook 15.0 Object Library component and specify the Outlook variable when you import the Microsoft.Office.Interop.Outlook namespace. The using statement must not occur directly before the functions in the code example but must be added before the public Class declaration. The following line of code shows how to do the import and assignment in C#.

using Outlook = Microsoft.Office.Interop.Outlook;
private void ShowTaskRequests()
{
    string filter = "[MessageClass] = 'IPM.TaskRequest'";
    Outlook.Table table =
        Application.Session.GetDefaultFolder
        (Outlook.OlDefaultFolders.olFolderInbox).GetTable
        (filter, Outlook.OlTableContents.olUserItems);
    while (!table.EndOfTable)
    {
        Outlook.Row nextRow = table.GetNextRow();
        Debug.WriteLine(nextRow["Subject"]);
    }
}

另請參閱