IP*Works! 2016 .NET Edition
IP*Works! 2016 .NET Edition
Questions / Feedback?

MessagePart Event

Fired for each message part when FetchMessageInfo is called.

Syntax

[VB.NET]
Public Event OnMessagePart As OnMessagePartHandler
[C#]
public event OnMessagePartHandler OnMessagePart;

public delegate void OnMessagePartHandler(object sender, ImapMessagePartEventArgs e);

class ImapMessagePartEventArgs : EventArgs {
  string PartId {get;}
  long Size {get;}
  string ContentType {get;}
  string Filename {get;}
  string ContentEncoding {get;}
  string Parameters {get;}
  string MultipartMode {get;}
  string ContentId {get;}
  string ContentDisposition {get;}
}

Remarks

The PartId parameter denotes the PartId which may be identified in other parts or messages. The format of part id-s is specified by the IMAP RFCs.

The Size parameter gives the size of this part.

The ContentType parameter shows the type of data contained in the part.

The ContentEncoding parameter shows how the data is encoded.

The Filename parameter shows the filename corresponding to the part (if the part was included in the message as an attached file).

The Parameters parameter contains the additional parameters passed to the ContentType header such as the part charset etc.

The MultipartMode parameter shows the how this part relates to the message's whole multipart structure ('mixed', 'alternative', etc.).

The ContentId parameter shows the value of the Content-Id header for the part.

The ContentEncoding parameter shows the value of the Content-Encoding header for the part.

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
IP*Works! 2016 .NET Edition - Version 16.0 [Build 7353]