Property DocumentName
DocumentName
Gets the name of the document being imported.
public string DocumentName { get; }
Property Value
Examples
pdfChat.DocumentImportProgress += (sender, e) =>
{
Console.WriteLine($"Importing: {e.DocumentName}");
};