Table of Contents

Property Name

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

Name

Gets the name of the source document.

public string Name { get; }

Property Value

string

Examples

foreach (var reference in result.SourceReferences)
{
    Console.WriteLine($"From document: {reference.Name}");
}
Share