MailMessage.CheckSignature
Contents
[
Hide
]CheckSignature(string)
Checks the signature of the specified eml file.
public static bool CheckSignature(string fileName)
| Parameter | Type | Description |
|---|---|---|
| fileName | String | A file name (eml). |
Return Value
True if signature is valid; otherwise, false.
Exceptions
| exception | condition |
|---|---|
| ArgumentException | fileName is null or empty. |
| FileNotFoundException | The specified fileName doesn’t exist. |
| NotSupportedException | Signature type is not supported. |
| InvalidOperationException | Mail message is not signed or signature type is not specified. |
See Also
- class MailMessage
- namespace Aspose.Email
- assembly Aspose.Email
CheckSignature(Stream)
Checks the signature of the specified eml message.
public static bool CheckSignature(Stream stream)
| Parameter | Type | Description |
|---|---|---|
| stream | Stream | A stream containing the message in eml format. |
Return Value
True if signature is valid; otherwise, false.
Exceptions
| exception | condition |
|---|---|
| ArgumentNullException | stream is null. |
| NotSupportedException | Signature type is not supported. |
| InvalidOperationException | Mail message is not signed or signature type is not specified. |
See Also
- class MailMessage
- namespace Aspose.Email
- assembly Aspose.Email
CheckSignature()
Checking signature exsisting MailMessage.
public virtual X509Certificate2[] CheckSignature()
Return Value
X.509 signers certificates
Exceptions
| exception | condition |
|---|---|
| InvalidOperationException | Throws if Mail message is not signed or signature is not verified. |
See Also
- class MailMessage
- namespace Aspose.Email
- assembly Aspose.Email