Table of Contents

Property DocumentName

Namespace
LMKit.Retrieval.Events
Assembly
LM-Kit.NET.dll

DocumentName

Gets the name of the document.

public string DocumentName { get; }

Property Value

string

Examples

pdfChat.CacheAccessed += (sender, e) =>
{
    Console.WriteLine($"Document: {e.DocumentName}");
};
Share