AuthenStateChng
API Reference
>
AuthenStateChng
| SoapAction | n/a |
| Input Name | AuthenStateChng |
| Output Name | AuthenStateChngResponse |
| Input Namespace | n/a |
| Group Name | Xperience |
| Container | XP_MsgBus.xsd |
Did this page help you?
Last updated Mon Dec 9 2024
| SoapAction | n/a |
| Input Name | AuthenStateChng |
| Output Name | AuthenStateChngResponse |
| Input Namespace | n/a |
| Group Name | Xperience |
| Container | XP_MsgBus.xsd |
private void OnAuthenStateChng(ISubscribedMessageContext context)
{
try
{
var text = "&&&&&& AuthenStateChng State is " + context.Message.AuthenState.AuthenState.Value + " &&&&&&";
this.UpdateListbox(text);
text = "&&&&&& AuthenStateChng Mode is " + context.Message.AuthenMode.AuthenMode.Value + " &&&&&&";
this.UpdateListbox(text);
}
catch (Exception ex)
{
Application.WriteLine(ex.Message);
}
}