Signature.Certificate Property

Definition

Gets the CertificateObject object for the X.509 digital certificate that was used to sign a form or a set of signed data in a form.

public:
 property Microsoft::Office::Interop::InfoPath::SemiTrust::CertificateObject ^ Certificate { Microsoft::Office::Interop::InfoPath::SemiTrust::CertificateObject ^ get(); };
public Microsoft.Office.Interop.InfoPath.SemiTrust.CertificateObject Certificate { get; }
member this.Certificate : Microsoft.Office.Interop.InfoPath.SemiTrust.CertificateObject
Public ReadOnly Property Certificate As CertificateObject

Property Value

Examples

In the following example, the Certificate property of the SignatureObject object is used to access the certificate of the digital signature, and display the IssuedTo property of the CertificateObject object in a message box:

public void DisplaySignatureProperties()
{
SignatureObject mySignature = thisXDocument.SignedDataBlocks[0].Signatures[0];
CertificateObject signatureCertificate = mySignature.<span class="label">Certificate</span>;
thisXDocument.UI.Alert("Certificate Issued To = " + signatureCertificate.IssuedTo);
}

Remarks

Important: This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

Applies to