EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSecureServer.OnCertificateURLs

TElSecureServer     See also    


 

This event is fired when the client has sent URLs instead of certificates for client authentication.

 
 

Declaration

[C#]
    event TSBCertificateURLsEvent OnCertificateURLs;
    delegate void TSBCertificateURLsEvent(object Sender, TElClientCertURLsSSLExtension URLs, TElMemoryCertStorage Certificates)

[VB.NET]
    Event OnCertificateURLs As TSBCertificateURLsEvent
    Delegate Sub TSBCertificateURLsEvent(ByVal Sender As Object, ByVal URLs As TElClientCertURLsSSLExtension, ByVal Certificates As TElMemoryCertStorage)

[Pascal]
    property OnCertificateURLs : TSBCertificateURLsEvent;
    TSBCertificateURLsEvent = procedure(Sender: TObject; URLs : TElClientCertURLsSSLExtension; Certificates : TElMemoryCertStorage) of object;

[VB6]
    not implemented

[ActiveX]
    not implemented

[DLL]
    not implemented
 
 

Parameters

  • URLs - contains the list of certificate urls
  • Certificates - Contains the certificate to be validated. [ActiveX]The value contains the row certificate data in the single-dimentional zero-based array of char (BYTE) values. The certificate can be parsed by creating an instance of TElCertificateX class and using it's LoadFromBuffer method to set the data buffer.
 
 

Description

    This event is fired by TElSecureServer when it received the URLs instead of certificate data from the client for client authentication. In this case the application should handle this event and return the certificates which correspond to the given URL(s).

 
 

See also:     PeerExtensions    

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