Xceed Words for .NET v5.0 Documentation
Xceed.Words.NET Assembly / Xceed.Words.NET Namespace / DigitalCertificate Class / Create Method
The path to the certificate to register.
The password required to access the certificate.


In This Topic
    Create Method (DigitalCertificate)
    In This Topic
    Creates a DigitalCertificate object from the certificate path and password received. This certificate will be used to sign a document with the DocX.Sign() method.
    Syntax
    'Declaration
     
    Public Shared Function Create( _
       ByVal certificatePath As String, _
       ByVal certificatePassword As String _
    ) As DigitalCertificate
    'Usage
     
    Dim certificatePath As String
    Dim certificatePassword As String
    Dim value As DigitalCertificate
     
    value = DigitalCertificate.Create(certificatePath, certificatePassword)
    public static DigitalCertificate Create( 
       string certificatePath,
       string certificatePassword
    )

    Parameters

    certificatePath
    The path to the certificate to register.
    certificatePassword
    The password required to access the certificate.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows, 11, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also