Lightstreamer .Net Adapter 1.7
|
Called by Lightstreamer Kernel through the Remote Server as a preliminary check that a user is enabled to make Requests to the related Data Providers. In this default implementation, a simpler 2-arguments version of the method is invoked, where the httpHeaders argument is discarded. Note that, for authentication purposes, only the user and password arguments should be consulted.
public: void NotifyUser(string user, string password, IDictionary httpHeaders);
public virtual void NotifyUser(string user, string password, IDictionary httpHeaders);
Public virtual Function NotifyUser(user As string, password As string, httpHeaders As IDictionary) As void
Parameters |
Description |
string user |
A User name. |
string password |
A password optionally required to validate the User. |
IDictionary httpHeaders |
An IDictionary-type value object that contains a name-value pair for each header found in the HTTP request that originated the call. Not used. |
Exceptions |
Description |
never thrown in this case. | |
never thrown in this case. |