You can use Application.ActiveProfile
https://docs.wisej.com/api/wisej.web/general/application#activeprofile
For example, this code snippet would set the text of a button to be the name of the active profile when the button is clicked.
private void button1_Click(object sender, System.EventArgs e)
{
button1.Text = Application.ActiveProfile.Name;
}
Application.ActiveProfile
is a ClientProfile object, so you might find the ClientProfile documentation helpful as well:
https://docs.wisej.com/api/wisej.web/general/application/wisej.core.clientprofile
-Julie
Please login first to submit.