Discuss this help topic in SecureBlackbox Forum

TElCustomExtension.Value

TElCustomExtension     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This property specifies the body of the extension.

Declaration

[C#]
    byte[] Value;

[VB.NET]
    Property Value As Byte()

[Pascal]
    property Value : string;

[C++]
    void get_Value(std::vector<uint8_t> &OutResult);
    void set_Value(const std::vector<uint8_t> &Value);

[PHP]
    string get_Value()
    void set_Value(array of byte|string|NULL $Value)

[Java]
    byte[] getValue();
    void setValue(byte[] Value);

Description

    Use this property to get/set the body of the certificate extension. This property should contain the ASN.1 data in BER format.

    Note, that this property has meaning only for custom extensions which don't have their own OIDs. Setting this property for the derived classes, that correspond to standard extensions (e.g. TElKeyUsageExtension), will take no effect.

See also:     Critical     OID    

Discuss this help topic in SecureBlackbox Forum