Discuss this help topic in SecureBlackbox Forum

TElPGPPublicKey.AddUserID

TElPGPPublicKey     See also     


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


Adds one more user ID related to the key.

Declaration

[C#]
    int AddUserID(TElPGPUserID User);

[VB.NET]
    Function AddUserID(ByVal User As TElPGPUserID) As Integer

[Pascal]
    function AddUserID(User : TElPGPUserID) : integer;

[C++]
    int32_t AddUserID(TElPGPUserID &User);
    int32_t AddUserID(TElPGPUserID *User);

[PHP]
    integer AddUserID(TElPGPUserID $User)

[Java]
    int addUserID(TElPGPUserID User);

Parameters

  • User - the user ID to be added.

Return value

    Index of the newly added user ID.

Description

    Use this method when you want to add new user related to this key. Note, that the new instance of the class being added is created, the contents of User parameter are put to this instance and then new instance is added to the list.

See also:     AddUserAttr     RemoveUserID     UserIDCount     UserIDs    

Discuss this help topic in SecureBlackbox Forum