Property Question
Question
Gets the user's question.
public string Question { get; }
Property Value
Examples
pdfChat.ResponseGenerationStarted += (sender, e) =>
{
Console.WriteLine($"Answering: {e.Question}");
};
Gets the user's question.
public string Question { get; }
pdfChat.ResponseGenerationStarted += (sender, e) =>
{
Console.WriteLine($"Answering: {e.Question}");
};