SecureBlackbox

200+ components and classes for all aspects of digital security of your data

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


TElSSLClient.Active

TElSSLClient     See also     


 

Specifies whether the session has been established and the data can be sent and received.

 

Declaration

[C#/Java]
    bool Active;

[VB.NET]
    Property Active As Boolean

[Pascal]
    property Active : boolean;

[C++]
    not implemented;

   

Description

    This read-only property returns True if the secure session was established, and the client can send data. If the client can't send the data now, False is returned. The client should check the value of the property before calling SendData method.

   

See also:     CipherSuites     SendData    

 
Back to top