DesktopEntry.url - multiple declarations
Function DesktopEntry.url
URL to access.
string url() pure nothrow @safe const;
Returns
The unescaped value associated with "URL" key.
Function DesktopEntry.url
Set "URL" to link escaping the value if needed.
string url
(
string link
) @safe;
Example
auto df = new DesktopFile(iniLikeStringReader("[Desktop Entry]\nType=Link\nURL=https://github.com/"));
assert(df .url() == "https://github.com/");