Discuss this help topic in SecureBlackbox Forum

TElSSHPublicKeyClient.Remove

TElSSHPublicKeyClient     See also     


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


This method removes the key from the server storage.

Declaration

[C#]
    void Remove(TElSSHKey Key);

[VB.NET]
    Sub Remove(ByVal Key As TElSSHKey)

[Pascal]
    procedure Remove(Key: TElSSHKey;);

[C++]
    void Remove(TElSSHKey &Key);
    void Remove(TElSSHKey *Key);

[PHP]
    void Remove(TElSSHKey $Key)

[Java]
    void remove(TElSSHKey Key);

Parameters

  • Key - object initialized with public key material

Description

    Call this method to remove public key from the server storage. Key object must be initialized with LoadPublicKey or Generate method. This method is asynchronous and returns execution to the program at once it was called. After the request was processed the OnStatus event is fired passing to user the results of method execution.

See also:     Add     List     ListAttributes    

Discuss this help topic in SecureBlackbox Forum