VintaSoft Imaging .NET SDK 14.0: Документация для .NET разработчика
Vintasoft.Imaging.Pdf.Processing Namespace / PdfDocumentVerifier Class / Verify Methods / Verify(String) Method
Синтаксис Example Требования Смотрите также
В этом разделе
    Verify(String) Метод (PdfDocumentVerifier)
    В этом разделе
    Проверяет указанный PDF документ.
    Синтаксис
    'Declaration
    
    Public Overloads Function Verify( _
    ByVal filename
    Имя файла PDF документа.
    As System.String _
    ) As Boolean
    public bool Verify(
    System.String filename
    )
    public: bool Verify(
    System.String filename
    )
    public:
    bool Verify(
    System.String filename
    )

    Parameters

    filename
    Имя файла PDF документа.

    Return Value

    True, если проверка пройдена; в противном случае, false.
    Пример

    Вот пример, показывающий, как проверить PDF документ на соответствие спецификации PDF/A-1b:

    
    ''' <summary>
    ''' Verifies a PDF document to conformance with PDF/A-1b specification.
    ''' </summary>
    ''' <param name="pdfFilename">The filename of PDF document.</param>
    Public Shared Sub VerifyDocumentToPdfA1b(pdfFilename As String)
        Dim verifier As New Vintasoft.Imaging.Pdf.Processing.PdfA.PdfA1bVerifier()
        System.Console.WriteLine("Verification...")
        If verifier.Verify(pdfFilename) Then
            System.Console.WriteLine("Document conforms to PDF/A-1b.")
        Else
            System.Console.WriteLine("Document does not conform to PDF/A-1b.")
        End If
    End Sub
    
    
    
    /// <summary>
    /// Verifies a PDF document to conformance with PDF/A-1b specification.
    /// </summary>
    /// <param name="pdfFilename">The filename of PDF document.</param>
    public static void VerifyDocumentToPdfA1b(string pdfFilename)
    {
        Vintasoft.Imaging.Pdf.Processing.PdfA.PdfA1bVerifier verifier = 
            new Vintasoft.Imaging.Pdf.Processing.PdfA.PdfA1bVerifier();
        System.Console.WriteLine("Verification...");
        if (verifier.Verify(pdfFilename))
            System.Console.WriteLine("Document conforms to PDF/A-1b.");
        else
            System.Console.WriteLine("Document does not conform to PDF/A-1b.");
    }
    
    

    Требования

    Целевые платформы: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    Смотрите также