Orc.NuGetExplorer.PackageSourceFactory.CreatePackageSource C# (CSharp) Method

CreatePackageSource() public method

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