EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSSHTunnelConnection.OnExtendedData

TElSSHTunnelConnection     See also    


 

This event is fired when a portion of extended data is received via logical connection

 
 

Declaration

[C#]
    event TSSHDataEvent OnExtendedData;
    delegate void TSSHDataEvent(object Sender, byte[] Buffer);

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

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

[VB6]
    Event OnExtendedData(Buffer)

[ActiveX]
    void _stdcall OnExtendedData([in] VARIANT Buffer);

[DLL]
    not implemented;
 
 

Parameters

  • Buffer - buffer with decrypted data
  • Size - size of the buffer with decrypted data
 
 

Description

    This event is fired when the new block of decrypted extended data is available. For command and shell tunnels extended data come the standard error (stderr).
    To get the type of extended data, check ExtendedDataType property.

    [ActiveX] Note  you can not use this event directly. Use TElSSHTunnelConnectionList.OnExtendedData event instead.

 
 

See also:     OnClose     OnData     OnError     ExtendedDataType

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