AttachSignature

AttachSignature(X509Certificate2, bool)

创建签名邮件。 创建指定 MailMessage 的只读副本并为其添加数字签名。

public virtual MailMessage AttachSignature(X509Certificate2 certificate, bool detached)
范围类型描述
certificateX509Certificate2X.509 证书。
detachedBoolean. 如果 detached 为 true,签名被分离。如果 detached 为 false(默认),签名不被分离。

也可以看看


AttachSignature(CmsSigner, bool)

创建签名邮件。 创建指定 MailMessage 的只读副本并为其添加数字签名。

public virtual MailMessage AttachSignature(CmsSigner signer, bool detached)
范围类型描述
signerCmsSignerSystem.Security.Cryptography.Pkcs.CmsSigner。
detachedBoolean. 如果 detached 为 true,签名被分离。如果 detached 为 false(默认),签名不被分离。

返回值

签名的 MailMessage。

也可以看看


AttachSignature(X509Certificate2)

创建签名邮件。 创建指定 MailMessage 的只读副本并为其添加数字签名。

public virtual MailMessage AttachSignature(X509Certificate2 certificate)
范围类型描述
certificateX509Certificate2X.509 证书。

返回值

签名的 MailMessage。

也可以看看


AttachSignature(CmsSigner)

创建签名邮件。 创建指定 MailMessage 的只读副本并为其添加数字签名。

public virtual MailMessage AttachSignature(CmsSigner signer)
范围类型描述
signerCmsSignerSystem.Security.Cryptography.Pkcs.CmsSigner。

返回值

签名的 MailMessage。

也可以看看