Beispiel #1
0
 /// <summary>
 /// Gets the URL of the package on the source website.
 /// </summary>
 public abstract Url GetUrlFromPackage(PackageBase package);
Beispiel #2
0
        /// <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));
        }