menu

Xamarin.Forms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Interface AnalyzerResult - Xamarin.Forms API Reference | Syncfusion

    Show / Hide Table of Contents

    Interface AnalyzerResult

    Represents the PDF document analyzer result.

    Namespace: Syncfusion.Pdf.Parsing
    Assembly: Syncfusion.Pdf.Portable.dll
    Syntax
    public interface AnalyzerResult
    Examples
            
    string filePath = "Input.pdf";   
    //load the document
    PdfDocumentAnalyzer analyzer = new PdfDocumentAnalyzer(filePath);
    //Analyze the synyax issue
    SyntaxAnalyzerResult analyzerResult = analyzer.AnalyzeSyntax();          
     if(analyzerResult.IsCorrupted)
     {
       throw new Exception("The document is corrupt");
     }
     analyzer.Close();

    Properties

    Errors

    Gets the errors.

    Declaration
    List<PdfException> Errors { get; }
    Property Value
    Type
    System.Collections.Generic.List<PdfException>
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved