Org.BouncyCastle.Asn1.X509.X509Extensions.GetNonCriticalExtensionOids C# (CSharp) Method

GetNonCriticalExtensionOids() public method

public GetNonCriticalExtensionOids ( ) : DerObjectIdentifier[]
return DerObjectIdentifier[]
		public DerObjectIdentifier[] GetNonCriticalExtensionOids()
		{
			return GetExtensionOids(false);
		}

Usage Example

示例#1
0
		internal static ISet GetNonCriticalExtensionOids(X509Extensions extensions)
		{
			if (extensions == null)
				return EmptySet;

			// TODO: should probably produce a set that imposes correct ordering
			return CollectionUtilities.ReadOnly(new HashSet(extensions.GetNonCriticalExtensionOids()));
		}