Table of Contents

Property SourceUri

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

SourceUri

Gets or sets an optional URI for the document source.

public string SourceUri { get; set; }

Property Value

string

The source URI string, or null if not specified.

Examples

var metadata = new DocumentMetadata(attachment);

// Set a reference URL for the original document location
metadata.SourceUri = "https://intranet.example.com/docs/report.pdf";

Remarks

Use this property to store a URL, file path, or other URI that allows users to locate or access the original document. This URI is included in DocumentReference instances returned by query operations.

Share