DistinguishedFolderIdNameType 列挙型

定義

列挙体はDistinguishedFolderIdNameType、名前で参照できる既知のMicrosoft Exchange Server 2007 フォルダーを識別します。

public enum class DistinguishedFolderIdNameType
public enum DistinguishedFolderIdNameType
Public Enum DistinguishedFolderIdNameType
継承
DistinguishedFolderIdNameType

フィールド

adminauditlogs 34
archivedeleteditems 22
archivemsgfolderroot 21
archiverecoverableitemsdeletions 24
archiverecoverableitemspurges 26
archiverecoverableitemsroot 23
archiverecoverableitemsversions 25
archiveroot 20
calendar 0

予定表フォルダーを表します。

conflicts 28
contacts 1

連絡先フォルダーを表します。

conversationhistory 33
deleteditems 2

削除済みアイテム フォルダーを表します。

directory 37
drafts 3

下書きフォルダーを表します。

imcontactlist 38
inbox 4

受信トレイ フォルダーを表します。

journal 5

Journal フォルダーを表します。

junkemail 13

迷惑メール フォルダーを表します。

localfailures 29
msgfolderroot 10

メッセージ フォルダーのルートを表します。

mycontacts 36
notes 6

Notes フォルダーを表します。

outbox 7

Outbox フォルダーを表します。

peopleconnect 39
publicfoldersroot 11
quickcontacts 32
recipientcache 31
recoverableitemsdeletions 17
recoverableitemspurges 19
recoverableitemsroot 16
recoverableitemsversions 18
root 12

メールボックスのルートを表します。

searchfolders 14

検索フォルダー フォルダーを表します。 これは Finder フォルダーのエイリアスでもあります。

sentitems 8

送信済みアイテム フォルダーを表します。

serverfailures 30
syncissues 27
tasks 9

タスク フォルダーを表します。

todosearch 35
voicemail 15

ボイス メール フォルダーを表します。

フォルダーの作成 (Exchange Web サービス) トピックの次のコード例は、列挙体を DistinguishedFolderIdNameType 使用してメールボックス内のフォルダーを識別する方法を示しています。

DistinguishedFolderIdType distFolder = new DistinguishedFolderIdType();
distFolder.Id = <span class="label">DistinguishedFolderIdNameType</span>.inbox;
TargetFolderIdType targetID = new TargetFolderIdType();
targetID.Item = distFolder;

注釈

列挙値は DistinguishedFolderIdNameType 、メールボックス内の既定のフォルダーのエイリアスとして機能します。 この列挙体によって識別されるすべてのフォルダーは、フォルダー識別子によって識別することもできます。

適用対象