EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSecureClient.Enabled

TElSecureClient     See also    


 

Specifies whether secure session is established before sending the data.

 
 

Declaration

[C#]
    bool Enabled ;

[VB.NET]
    Property Enabled As Boolean

[Pascal]
    property Enabled : boolean;

[VB6]
    Property IElSecureClientX.Enabled As Boolean

[ActiveX]
    HRESULT _stdcall IElSecureClientX.Enabled([in] VARIANT_BOOL Value);
    HRESULT _stdcall IElSecureClientX.Enabled([out, retval] VARIANT_BOOL * Value);

[DLL]
    __stdcall DWORD SBClientEnable(HANDLE handle);
    __stdcall DWORD SBClientDisable(HANDLE handle);
    __stdcall BOOL SBClientIsEnabled(HANDLE handle);
 
 

Parameters

[DLL]handle - handle to the TElSecureClient object that was returned by Constructor

 
 

Description

    This property defines the way TElSecureClient establishes session. When TElSecureClient is enabled, it performs it's job i.e. establishes SSL/TLS session and encrypts data. When Enabled is False, TElSecureClient passes the data unchanged. This lets the application call the same methods regardless on whether the secure or regular session is established.
    Example: when the socket is used for HTTP transfer, the application can use TElSecureClient's method both for HTTPS and plain HTTP sessions by enabling or disabling TElSecureClient accordingly.
    It is possible to change the Enabled state in the middle of the session, thus turning SSL on or off. This is useful when supporting explicit SSL in certain high-level protocols.

 
 

See also:     CipherSuites    

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