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

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public int InlineCount { get; }

Property Value

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