PdfXmpMetadata.GetNamespaceURIByPrefix

PdfXmpMetadata.GetNamespaceURIByPrefix method

Gets namespace URI by prefix.

public string GetNamespaceURIByPrefix(string prefix)
ParameterTypeDescription
prefixStringThe prefix.

Return Value

Namespace URI.

Examples

PdfXmpMetadata xmp = new PdfXmpMetadata("input.pdf");
Console.WriteLine(xmp.GetNamespaceURIByPrefix("xmp"));

See Also