Discuss this help topic in SecureBlackbox Forum

TElLDAPSKeyserverClient.Remove

TElLDAPSKeyserverClient     See also     


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


Removes a key from the PGP keyserver.

Declaration

[C#]
    void Remove(TElPGPPublicKey Key);
    void Remove(string KeyID);

[VB.NET]
    Sub Remove(ByVal Key As TElPGPPublicKey)
    Sub Remove(ByVal KeyID As String)

[Pascal]
    procedure Remove(const Key : TElPGPPublicKey);
    procedure Remove(const KeyID : string);

[C++]
    void Remove(const TElPGPPublicKey &Key);
    void Remove(const TElPGPPublicKey *Key);
    void Remove(const std::string &KeyID);

[PHP]
    void Remove(TElPGPPublicKey $Key)
    void Remove(string $KeyID)

[Java]
    void remove(TElPGPPublicKey Key);
    void remove(String KeyID);

Parameters

  • Key - the key to be removed.
  • KeyID - ID of the key to be removed.

Description

    Use this method to remove the desired key from the PGP keyserver.

See also:     Add    

Discuss this help topic in SecureBlackbox Forum