Table of Contents

Property SourceUri

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

SourceUri

Gets the source URI of the document, or an empty string if not specified during import.

public string SourceUri { get; }

Property Value

string

Examples

foreach (var reference in result.SourceReferences)
{
    if (!string.IsNullOrEmpty(reference.SourceUri))
        Console.WriteLine($"Original location: {reference.SourceUri}");
}
Share