Discuss this help topic in SecureBlackbox Forum

TElRelativeDistinguishedName.LoadFromTag

TElRelativeDistinguishedName     See also     


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


Loads the RDN from an ASN.1 tag.

Declaration

[C#]
    bool LoadFromTag(TElASN1ConstrainedTag Tag, bool IgnoreTopSequence);

[VB.NET]
    Function LoadFromTag(ByVal Tag As TElASN1ConstrainedTag, ByVal IgnoreTopSequence As Boolean) As Boolean

[Pascal]
    function LoadFromTag(Tag : TElASN1ConstrainedTag; IgnoreTopSequence : boolean = false) : boolean;

[C++]
    bool LoadFromTag(TElASN1ConstrainedTag &Tag, bool IgnoreTopSequence);
    bool LoadFromTag(TElASN1ConstrainedTag *Tag, bool IgnoreTopSequence);

[PHP]
    bool LoadFromTag(TElASN1ConstrainedTag $Tag, bool $IgnoreTopSequence)

[Java]
    boolean loadFromTag(TElASN1ConstrainedTag Tag, boolean IgnoreTopSequence);

Parameters

  • Tag - the ASN.1 tag from which the RDN should be loaded.
  • IgnoreTopSequence - specifies if the top sequence should be ignored or not.

Return value

Returns True if the operation was successfull, otherwise returns False.

Description

Use this method to load the RDN from the ASN.1 tag.

See also:     LoadFromDNString    

Discuss this help topic in SecureBlackbox Forum