Click or drag to resize
MimeKit

DigitalSignatureCollection Class

A collection of digital signatures.
Inheritance Hierarchy
SystemObject
  System.Collections.ObjectModelReadOnlyCollectionIDigitalSignature
    MimeKit.CryptographyDigitalSignatureCollection

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public class DigitalSignatureCollection : ReadOnlyCollection<IDigitalSignature>

The DigitalSignatureCollection type exposes the following members.

Constructors
 NameDescription
Public methodDigitalSignatureCollection Initialize a new instance of the DigitalSignatureCollection class.
Top
Properties
Methods
 NameDescription
Public methodContains
(Inherited from ReadOnlyCollectionIDigitalSignature)
Public methodCopyTo
(Inherited from ReadOnlyCollectionIDigitalSignature)
Public methodEquals
(Inherited from Object)
Protected methodFinalize
(Inherited from Object)
Public methodGetEnumerator
(Inherited from ReadOnlyCollectionIDigitalSignature)
Public methodGetHashCode
(Inherited from Object)
Public methodGetType
(Inherited from Object)
Public methodIndexOf
(Inherited from ReadOnlyCollectionIDigitalSignature)
Protected methodMemberwiseClone
(Inherited from Object)
Public methodToString
(Inherited from Object)
Top
Remarks

When verifying a digitally signed MIME part such as a MultipartSigned or a ApplicationPkcs7Mime, you will get back a collection of digital signatures. Typically, a signed message will only have a single signature (created by the sender of the message), but it is possible for there to be multiple signatures.

See Also