Orc.NuGetExplorer.NuGetConfigurationService.DisablePackageSource C# (CSharp) Method

DisablePackageSource() public method

public DisablePackageSource ( string name, string source ) : void
name string
source string
return void
        public void DisablePackageSource(string name, string source)
        {
            Argument.IsNotNullOrWhitespace(() => name);

            _packageSourceProvider.DisablePackageSource(new PackageSource(source, name));
        }