Table of Contents

Property Id

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

Id

Gets the unique identifier of the source document, or an empty string if unavailable.

public string Id { get; }

Property Value

string

Examples

foreach (var reference in result.SourceReferences)
{
    Console.WriteLine($"Document ID: {reference.Id}");
}
Share