Click or drag to resize

X509NameConstraintsExtension Class

The name constraints extension, which MUST be used only in a CA certificate, indicates a name space within which all subject names in subsequent certificates in a certification path MUST be located. Restrictions apply to the subject distinguished name and apply to subject alternative names. Restrictions apply only when the specified name form is present. If no name of the type is in the certificate, the certificate is acceptable. More details about Name constraints extension processing: RFC 5280.
Inheritance Hierarchy
SystemObject
  System.Security.CryptographyAsnEncodedData
    System.Security.Cryptography.X509CertificatesX509Extension
      System.Security.Cryptography.X509CertificatesX509NameConstraintsExtension

Namespace:  System.Security.Cryptography.X509Certificates
Assembly:  SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax
public sealed class X509NameConstraintsExtension : X509Extension

The X509NameConstraintsExtension type exposes the following members.

Constructors
  NameDescription
Public methodX509NameConstraintsExtension(AsnEncodedData)
Intitializes a new instance of X509NameConstraintsExtension class from ASN.1-encoded Name Constraints extension value. Name Constraints extension is always marked critical.
Public methodX509NameConstraintsExtension(X509AlternativeNameCollection, X509AlternativeNameCollection)
Intitializes a new instance of X509NameConstraintsExtension class from a collection of explicitly permitted and excluded subtrees. Name Constraints extension is always marked critical.
Top
Properties
  NameDescription
Public propertyCritical
Gets a Boolean value indicating whether the extension is critical.
(Inherited from X509Extension.)
Public propertyExcludedSubtree
Gets a collection of explicitly disallowed names. Any name matching a restriction in this collection is invalid regardless of information appearing in the PermittedSubtree member.
Public propertyOid
Gets or sets the Oid value for an AsnEncodedData object.
(Inherited from AsnEncodedData.)
Public propertyPermittedSubtree
Gets a collection of explicitly allowed names. Any name matching a restriction in this collection is valid only if it is not listed in the ExcludedSubtree collection. member.
Public propertyRawData
Gets or sets the Abstract Syntax Notation One (ASN.1)-encoded data represented in a byte array.
(Inherited from AsnEncodedData.)
Top
Methods
  NameDescription
Public methodCopyFrom
Copies the extension properties of the specified AsnEncodedData object.
(Inherited from X509Extension.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodFormat
Returns a formatted version of the Abstract Syntax Notation One (ASN.1)-encoded data as a string.
(Inherited from AsnEncodedData.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodEncode
Encodes current extension to ASN.1-encoded byte array.
(Defined by X509ExtensionExtensions.)
Top
See Also