Property SourceUri
SourceUri
Gets the source URI of the document, or an empty string if not specified during import.
public string SourceUri { get; }
Property Value
Examples
foreach (var reference in result.SourceReferences)
{
if (!string.IsNullOrEmpty(reference.SourceUri))
Console.WriteLine($"Original location: {reference.SourceUri}");
}