Field SourceUriKey
The metadata key used to store the source URI in section metadata.
public const string SourceUriKey = "lmkit_sec_doc_sourceuri"
Returns
- string
- The metadata key used to store the source URI in section metadata.
Examples
// Use the key to retrieve the source URI from partition metadata
if (partition.Metadata.TryGet(DocumentMetadata.SourceUriKey, out var uriMeta))
{
Console.WriteLine($"Source: {uriMeta.Value}");
}