Org.BouncyCastle.Pkix.PkixBuilderParameters.SetExcludedCerts C# (CSharp) Method

SetExcludedCerts() public method

Sets the excluded certificates which are not used for building a certification path. If the ISet is null an empty set is assumed.
The given set is cloned to protect it against subsequent modifications.
public SetExcludedCerts ( ISet excludedCerts ) : void
excludedCerts ISet The excluded certificates to set.
return void
		public virtual void SetExcludedCerts(
			ISet excludedCerts)
		{
			if (excludedCerts == null)
			{
				excludedCerts = new HashSet();
			}
			else
			{
				this.excludedCerts = new HashSet(excludedCerts);
			}
		}