EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSimpleSSHClient.OnPrivateKeyNeeded

TElSimpleSSHClient    


 

This event is fired when a client's public key was accepted by the server, but the corresponding secret key is not present.

 
 

Declaration

[C#]
    event TSSHPrivateKeyNeededEvent OnPrivateKeyNeeded;
    delegate void TSSHPrivateKeyNeededEvent(object Sender, TElSSHKey Key, ref bool Skip);

[VB.NET]
    Event OnPrivateKeyNeeded As TSSHPrivateKeyNeededEvent
    Delegate Sub TSSHPrivateKeyNeededEvent(ByVal Sender As Object, ByVal Key As TElSSHKey, ByRef Skip As Boolean)

[Pascal]
    property OnPrivateKeyNeeded : TSSHPrivateKeyNeededEvent;
    TSSHPrivateKeyNeededEvent = procedure (Sender: TObject; Key : TElSSHKey; var Skip : Boolean) of object;

[VB6]
    not implemented;

[ActiveX]
    not implemented;

[DLL]
    not implemented;
 
 

Parameters

  • Key - the corresponding private key which is missing.
  • Skip - set this parameter to True when it is not possible to load the missing key for some reason.
 
 

Description

    This event is fired by TElSimpleSSHClient when the client's public key was accepted by the server, but the corresponding secret key is not present and thus the client is unable to authenticate using this key. The handler should load the corresponding private key into the passed Key object or set Skip parameter to True if it is not possible for some reason.

 
Contact Us | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2012, EldoS Corporation