Hi,
I build a new AddOn for Proxy Networks' Proxy Host sessions. Just curious if it is possible to use the saved credentials from the repository using the SDK?
Cheers!
Sjoerd
Cheers!
Sjoerd
Hi,
It's not possible yet, but we will eventually add this functionality in the SDK. you will have to implements a new interface ISessionAddOn3
David Hervieux
Hi,
I have the same request. Is it possible Now ?
Cheers
Hi,
It's already there. Take a look at ISessionAddOn3
/// <summary>
/// This method is used to set the domain in the parameters
/// </summary>
/// <param name="parameters"></param>
/// <param name="domain"></param>
string SetDomain(string parameters, string domain);
/// <summary>
/// This method is used to set the password in the parameters
/// </summary>
/// <param name="parameters"></param>
/// <param name="password"></param>
string SetPassword(string parameters, string password);
/// <summary>
/// This method is used to set the username in the parameters
/// </summary>
/// <param name="parameters"></param>
/// <param name="userName"></param>
string SetUserName(string parameters, string userName);
David Hervieux
Thanks ...
Work fine ;)