Discuss this help topic in SecureBlackbox Forum

TElSimpleSSHServer.OnAuthPassword

TElSimpleSSHServer     See also     


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


Declaration

[C#]
    event TSSHAuthPasswordEvent OnAuthPassword;
    delegate void TSSHAuthPasswordEvent(Object Sender, string Username, string Password, ref bool Accept, ref bool ForceChangePassword);

[VB.NET]
    Event OnAuthPassword As TSSHAuthPasswordEvent
    Delegate Sub TSSHAuthPasswordEvent(ByVal Sender As Object, ByVal Username As String, ByVal Password As String, ByRef Accept As Boolean, ByRef ForceChangePassword As Boolean)

[Pascal]
    under development

[C++]
    void get_OnAuthPassword(TSSHAuthPasswordEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnAuthPassword(TSSHAuthPasswordEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSSHAuthPasswordEvent)(void * _ObjectData, TObjectHandle Sender, const char * pcUsername, int32_t szUsername, const char * pcPassword, int32_t szPassword, int8_t &Accept, int8_t &ForceChangePassword);

[PHP]
    TSSHAuthPasswordEvent|callable|NULL get_OnAuthPassword()
    void set_OnAuthPassword(TSSHAuthPasswordEvent|callable|NULL $Value)
    callable TSSHAuthPasswordEvent(TObject $Sender, string $Username, string $Password, bool &$Accept, bool &$ForceChangePassword)

[Java]
    TSSHAuthPasswordEvent getOnAuthPassword();
    void setOnAuthPassword(TSSHAuthPasswordEvent Value);
    TSSHAuthPasswordEvent.Callback OnAuthPassword = new TSSHAuthPasswordEvent.Callback() {
        public void TSSHAuthPasswordEventCallback(TObject arg0, String arg1, String arg2, TSSHAuthPasswordEventParams arg3) {
            //...
        }
    }

Parameters

  • pcUsername -
  • szUsername -
  • pcPassword -
  • szPassword -
  • Accept -
  • ForceChangePassword -
  • Username -
  • Password -

Description

    This topic is under development.

See also:     ...    

Discuss this help topic in SecureBlackbox Forum