System::Security::Cryptography::X509Certificates::X500DistinguishedName class

X500DistinguishedName class

Represents distinguished name of X509 certificate. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class X500DistinguishedName : public System::Security::Cryptography::AsnEncodedData

Methods

MethodDescription
Decode(X500DistinguishedNameFlags) constDecodes name using parameters specified by flags.
Format(bool) const overrideFormats name for printing.
get_Name() constGets certificate distinguished name.
X500DistinguishedName(const SharedPtr<AsnEncodedData>&)RTTI information.
X500DistinguishedName(const ByteArrayPtr&)Constructor.
X500DistinguishedName(const String&)Constructor.
X500DistinguishedName(const SharedPtr<X500DistinguishedName>&)Copy constructor.
X500DistinguishedName(const String&, X500DistinguishedNameFlags)Constructor.

See Also