Search Results for

    Show / Hide Table of Contents

    Class DocumentInfo

    Inheritance
    System.Object
    DocumentInfo
    Namespace: PdfToSvg
    Assembly: IronPdf.dll
    Syntax
    public class DocumentInfo : Object

    A read-only record of the metadata embedded in a PDF file, DocumentInfo gives every field that PDF producers write into a document's information dictionary: authorship, timestamps, toolchain provenance, and descriptive text. Retrieving this object is the first step whenever a workflow needs to audit, display, or index PDF metadata without opening the full document for rendering.

    DocumentInfo surfaces eight properties drawn directly from the PDF information dictionary. The string fields, Author, Creator, Keywords, Producer, Subject, and Title, mirror the standard PDF metadata keys by the same names. Creator records the application that originally created the source document (for example, a word processor), while Producer identifies the software that converted or wrote the PDF bytes. Keywords arrives as a single string whose internal delimiter follows whatever convention the producing tool used, so splitting on commas or semicolons is the caller's responsibility.

    The two timestamp properties, CreationDate and ModDate, are typed as Nullable<DateTimeOffset> rather than plain strings. That choice reflects the PDF specification: a document may omit either date entirely, and when present the value carries timezone information. Checking for null before formatting is therefore correct practice, not defensive boilerplate.

    All eight properties are read-only. DocumentInfo is a value-carrying record, not a builder, so there are no setters and no constructor to call directly. The object is obtained from the IronPDF conversion pipeline rather than constructed in application code.

    using PdfToSvg;
    
    using var doc = PdfDocument.Load("report.pdf");
    DocumentInfo info = doc.Info;
    
    Console.WriteLine($"Title:    {info.Title}");
    Console.WriteLine($"Author:   {info.Author}");
    Console.WriteLine($"Keywords: {info.Keywords}");
    
    if (info.CreationDate.HasValue)
        Console.WriteLine($"Created:  {info.CreationDate.Value:yyyy-MM-dd}");
    
    if (info.ModDate.HasValue)
        Console.WriteLine($"Modified: {info.ModDate.Value:yyyy-MM-dd}");

    The IronPDF get-started guide covers initial setup. The PDF metadata how-to explains reading and writing document properties in depth. The PDF to SVG conversion example shows the broader pipeline that surfaces DocumentInfo. Full API documentation is available at the IronPDF docs hub.

    Properties

    Author

    Declaration
    public string Author { get; }
    Property Value
    Type Description
    System.String

    CreationDate

    Declaration
    public Nullable<DateTimeOffset> CreationDate { get; }
    Property Value
    Type Description
    System.Nullable<System.DateTimeOffset>

    Creator

    Declaration
    public string Creator { get; }
    Property Value
    Type Description
    System.String

    Keywords

    Declaration
    public string Keywords { get; }
    Property Value
    Type Description
    System.String

    ModDate

    Declaration
    public Nullable<DateTimeOffset> ModDate { get; }
    Property Value
    Type Description
    System.Nullable<System.DateTimeOffset>

    Producer

    Declaration
    public string Producer { get; }
    Property Value
    Type Description
    System.String

    Subject

    Declaration
    public string Subject { get; }
    Property Value
    Type Description
    System.String

    Title

    Declaration
    public string Title { get; }
    Property Value
    Type Description
    System.String
    ☀
    ☾
    Downloads
    • Download with Nuget
    • Start for Free
    In This Article
    Back to top
    Install with Nuget
    IronPDF_for_dotnet_log2o
    Blue key in circleGet started for FREE
    No credit card required
    Test in a live environment

    Test in production without watermarks.
    Works wherever you need it to.

    Fully-functional product

    Get 30 days of fully functional product.
    Have it up and running in minutes.

    24/5 technical support

    Full access to our support engineering team during your product trial

    Grey key in circleGet started for FREE
    The trial form was submitted successfully.
    Calendar in circleBook Free Live Demo
    No contact, no card details, no commitments Book a 30-minute, personal demo.
    Here's what to expect:

    A live demo of our product and its key features

    Get project specific feature recommendations

    All your questions are answered to make sure you have all the information you need. (No commitment whatsoever.)

    Grey key in circleBook Free Live Demo
    Your booking has been completed Check your e-mail for confirmation
    Support Team Member 6 related to The C# PDF Library Support Team Member 14 related to The C# PDF Library Support Team Member 4 related to The C# PDF Library Support Team Member 2 related to The C# PDF Library
    Online 24/5
    Need help? Our sales team would be glad to help you.
    Try the Enterprise Trial
    ironpdf_for_dotnet_log2o
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    bullet_checkedNo credit card or account creation required
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    Blue key in circleNo credit card or account creation required
    Green Check in orange circle
    The trial form was submitted successfully.
    badge_greencheck_in_yellowcircle
    Thank you for starting a trial

    Please check your email for the trial license key.

    If you don’t receive an email, please start a live chat or email support@ironsoftware.com

    Install with NuGet
    View Licensing
    • Logo Aetna
    • Logo NASA
    • Logo GE
    • Logo Porsche
    • Logo USDA
    • Logo Qatar
    Join Millions of Engineers who’ve tried IronPDF