Class ActivityMediator
- Namespace
- Auth0.OidcClient
- Assembly
- Auth0.OidcClient.dll
Facilitates communication between the app entry point and the callback function.
public class ActivityMediator : Object
- Inheritance
-
ActivityMediator
Properties
Instance
Singleton instance of the ActivityMediator class.
public static ActivityMediator Instance { get; }
Property Value
Methods
Cancel()
Send a cancellation response message "UserCancel" to all listeners.
public void Cancel()
Send(string)
Send a response message to all listeners.
public void Send(string response)
Parameters
response
stringResponse message to send to all listeners.
add_ActivityMessageReceived(MessageReceivedEventHandler)
public void add_ActivityMessageReceived(ActivityMediator.MessageReceivedEventHandler value)
Parameters
remove_ActivityMessageReceived(MessageReceivedEventHandler)
public void remove_ActivityMessageReceived(ActivityMediator.MessageReceivedEventHandler value)
Parameters
Events
ActivityMessageReceived
Event listener for subscribing to message received events.
public event ActivityMediator.MessageReceivedEventHandler ActivityMessageReceived