EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSimpleSSHClient.OnSend

TElSimpleSSHClient     See also    


 

This event is fired when TElSimpleSSHClient needs to transfer the encrypted data to the server

 
 

Declaration

[C#]
    event TSSHSendEvent OnSend;
    delegate void TSSHSendEvent(object Sender, byte[] Buffer)

[VB.NET]
    Event OnSend As TSSHSendEvent
    Delegate Sub TSSHSendEvent(ByVal Sender As Object, ByVal Buffer As Byte())

[Pascal]
    property OnSend : TSSHSendEvent;
    TSSHSendEvent = procedure (Sender: TObject; Buffer : pointer; Size : longint) of object;

[VB6]
    Event IElSimpleSSHClientXEvents.OnSend(Data)

[ActiveX]
    void IElSimpleSSHClientXEvents.OnSend( [in] VARIANT Data );

[DLL]
    not implemented;
 
 

Parameters

  • Buffer (Data) - The buffer with encrypted data
  • Size - The length of the data in buffer (in bytes)
 
 

Description

    This event is fired when TElSimpleSSHClient needs to transfer the portion of encrypted data to the server. It's a good idea to call a send function from this event's handler.

You must handle this event, if you don't use built-in sockets (see UseInternalSocket property). There is no other way to pass the encrypted data from TElSimpleSSHClient to server, except this event!

 
 

See also:     OnReceive

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