Adds a file as new attachment to an exchange item.

Namespace:  Rebex.Net
Assembly:  Rebex.Ews (in Rebex.Ews.dll)

Syntax

Visual Basic
Public Function AddAttachment ( _
	itemId As EwsItemId, _
	filePath As String, _
	contentType As String _
) As EwsAttachmentId
C#
public EwsAttachmentId AddAttachment(
	EwsItemId itemId,
	string filePath,
	string contentType
)

Parameters

itemId
Type: Rebex.Net..::..EwsItemId
ID of an item to which to add the attachment.
filePath
Type: System..::..String
Path to a file to read attachment data from.
contentType
Type: System..::..String
Content type of an attachment. For predefined strings see MediaTypeNames subclasses's constants.

Return Value

EwsAttachmentId of the new attachment.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also