Discuss this help topic in SecureBlackbox Forum

TElSAMLServiceProvider.DataAvailable

TElSAMLServiceProvider     See also     


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


Tells the component that there is data in the socket to be read.

Declaration

[C#]
    void DataAvailable();

[VB.NET]
    Sub DataAvailable()

[Pascal]
    procedure DataAvailable;

[C++]
    void DataAvailable();

[PHP]
    void DataAvailable()

[Java]
    void dataAvailable();

Description

Call this method to tell TElSAMLServiceProvider that there is data to be retrieved in the socket. The component then fires OnReceive event to read the block of data.

If the application uses one of wait methods to check availability of the data in the socket (select() or WaitFor* API functions), the place to call DataAvailable is right after the call to those wait methods.

See also:     OnReceive    

Discuss this help topic in SecureBlackbox Forum