Orc.NuGetExplorer.PackageSourceFactory.CreatePackageSource C# (CSharp) Méthode

CreatePackageSource() public méthode

public CreatePackageSource ( string source, string name, bool isEnabled, bool isOfficial ) : IPackageSource
source string
name string
isEnabled bool
isOfficial bool
Résultat IPackageSource
        public IPackageSource CreatePackageSource(string source, string name, bool isEnabled, bool isOfficial)
        {
            return new NuGetPackageSource(source, name, isEnabled, isOfficial);
        }
        #endregion
PackageSourceFactory