Discuss this help topic in SecureBlackbox Forum

TElPGPPublicKey.RemoveUserAttr

TElPGPPublicKey     See also     


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


Removes one of user's attributes related to this key.

Declaration

[C#]
    bool RemoveUserAttr(int Index);
    bool RemoveUserAttr(TElPGPUserAttr UserAttr);

[VB.NET]
    Function RemoveUserAttr(ByVal Index As Integer) As Boolean
    Function RemoveUserAttr(ByVal UserAttr As TElPGPUserAttr) As Boolean

[Pascal]
    function RemoveUserID(User : TElPGPUserID) : boolean;
    function RemoveUserAttr(Index : integer) : boolean;

[C++]
    bool RemoveUserAttr(int32_t Index);
    bool RemoveUserAttr(TElPGPUserAttr &UserAttr);
    bool RemoveUserAttr(TElPGPUserAttr *UserAttr);

[PHP]
    bool RemoveUserAttr(integer $Index)
    bool RemoveUserAttr(TElPGPUserAttr $UserAttr)

[Java]
    boolean removeUserAttr(int Index);
    boolean removeUserAttr(TElPGPUserAttr UserAttr);

Parameters

  • Index - index of the user to be removed from the list.
  • User - the user to be removed.
  • UserAttr - ...

Description

    Use this method to remove one of user's keys related to the key.

See also:     AddUserAttr     UserAttrCount     UserAttrs     RemoveUserID    

Discuss this help topic in SecureBlackbox Forum