Orc.NuGetExplorer.PackageSourceFactory.CreatePackageSource C# (CSharp) Метод

CreatePackageSource() публичный Метод

public CreatePackageSource ( string source, string name, bool isEnabled, bool isOfficial ) : IPackageSource
source string
name string
isEnabled bool
isOfficial bool
Результат IPackageSource
        public IPackageSource CreatePackageSource(string source, string name, bool isEnabled, bool isOfficial)
        {
            return new NuGetPackageSource(source, name, isEnabled, isOfficial);
        }
        #endregion
PackageSourceFactory