Property Elapsed
Elapsed
Gets the elapsed time for the retrieval operation.
public TimeSpan Elapsed { get; }
Property Value
Examples
pdfChat.PassageRetrievalCompleted += (sender, e) =>
{
Console.WriteLine($"Passage retrieval completed in {e.Elapsed.TotalMilliseconds:F0} ms");
};