Property Id
Id
Gets the unique identifier of the source document, or an empty string if unavailable.
public string Id { get; }
Property Value
Examples
foreach (var reference in result.SourceReferences)
{
Console.WriteLine($"Document ID: {reference.Id}");
}