/// <summary> /// Gets the URL of the package on the source website. /// </summary> public abstract Url GetUrlFromPackage(PackageBase package);
/// <summary> /// Gets the URL of the package on the source website. /// </summary> public Url GetUrlForPackageAsync(PackageBase package) { string ns = package.Urn.NamespaceIdentifier; return(GetHandlerForNamespace(ns).GetUrlFromPackage(package)); }