System::Security::Cryptography::Oid class

Oid class

Cryptographic object identifier. 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 Oid : public System::Object

Methods

MethodDescription
static FromFriendlyName(const String&, OidGroup)Create OID object from the specified OID friendly name.
static FromOidValue(const String&, OidGroup)Create OID object from the specified OID value.
get_FriendlyName() constGets user-friendly name of object.
get_Value() constGets object identifier string.
Oid()RTTI information.
Oid(const SharedPtr<Oid>&)Copy constructor.
Oid(const String&)Constructor.
Oid(const String&, const String&)Constructor.
set_FriendlyName(const String&)Sets user-friendly name of object.
set_Value(const String&)Sets object identifier string.

See Also