AttachmentCollectionInlineCount Property
Returns the number of inline attachments in the collection.

Namespace: MailBee.Mime
Assembly: MailBee.NET.45 (in MailBee.NET.45.dll) Version: 10.0.45.502
Syntax
public int InlineCount { get; }

Property Value

Type: Int32
The count of the attachments having IsInline set to true.
Remarks
To learn the count of real (not inline) attachments, use msg.Attachments.Count - msg.Attachments.InlineCount
See Also