Org.BouncyCastle.Pkix.PkixBuilderParameters.SetExcludedCerts C# (CSharp) Méthode

SetExcludedCerts() public méthode

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.
Résultat void
		public virtual void SetExcludedCerts(
			ISet excludedCerts)
		{
			if (excludedCerts == null)
			{
				excludedCerts = new HashSet();
			}
			else
			{
				this.excludedCerts = new HashSet(excludedCerts);
			}
		}