Table of Contents

Enum AttachMethod

Namespace
Encryptomatic.MailDex.Lib.PST.Messaging
Assembly
MailDex.Lib.dll

https://docs.microsoft.com/en-us/office/client-developer/outlook/mapi/pidtagattachmethod-canonical-property This property can have exactly one of the following values: NO_ATTACHMENT The attachment has just been created. ATTACH_BY_VALUE The PR_ATTACH_DATA_BIN (PidTagAttachDataBinary) property contains the attachment data. ATTACH_BY_REFERENCE The PR_ATTACH_PATHNAME (PidTagAttachPathname) or PR_ATTACH_LONG_PATHNAME (PidTagAttachLongPathname) property contains a fully-qualified path identifying the attachment to recipients with access to a common file server. ATTACH_BY_REF_RESOLVE The PR_ATTACH_PATHNAME or PR_ATTACH_LONG_PATHNAME property contains a fully-qualified path identifying the attachment. ATTACH_BY_REF_ONLY The PR_ATTACH_PATHNAME or PR_ATTACH_LONG_PATHNAME property contains a fully-qualified path identifying the attachment. ATTACH_EMBEDDED_MSG The PR_ATTACH_DATA_OBJ (PidTagAttachDataObject) property contains an embedded object that supports the IMessage interface. ATTACH_OLE The attachment is an embedded OLE object. ATTACH_BY_WEBREFERENCE The attachment content is not in the message.

public enum AttachMethod

Fields

ATTACH_BY_REFERENCE = 2

The PR_ATTACH_PATHNAME (PidTagAttachPathname) or PR_ATTACH_LONG_PATHNAME (PidTagAttachLongPathname) property contains a fully-qualified path identifying the attachment to recipients with access to a common file server.

ATTACH_BY_REF_ONLY = 4

The PR_ATTACH_PATHNAME or PR_ATTACH_LONG_PATHNAME property contains a fully-qualified path identifying the attachment.

ATTACH_BY_REF_RESOLVE = 3

The PR_ATTACH_PATHNAME or PR_ATTACH_LONG_PATHNAME property contains a fully-qualified path identifying the attachment.

ATTACH_BY_VALUE = 1

The PR_ATTACH_DATA_BIN (PidTagAttachDataBinary) property contains the attachment data.

ATTACH_EMBEDDED_MSG = 5

The PR_ATTACH_DATA_OBJ (PidTagAttachDataObject) property contains an embedded object that supports the IMessage interface.

ATTACH_OLE = 6

The attachment is an embedded OLE object.

NO_ATTACHMENT = 0

The attachment has just been created.