Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ClientUrlEventArgs.cs
1using System.Threading.Tasks;
2
3namespace Paiwise
4{
10 public delegate Task ClientUrlEventHandler(object Sender, ClientUrlEventArgs e);
11
15 public class ClientUrlEventArgs
16 {
22 public ClientUrlEventArgs(string Url, object State)
23 {
24 this.Url = Url;
25 this.State = State;
26 }
27
31 public string Url { get; }
32
36 public object State { get; }
37 }
38}
Event arguments for callback methods with the aim of pushing a URL to a client.
string Url
URL to push to the client.
object State
State object to pass on to the callback method.
ClientUrlEventArgs(string Url, object State)
Event arguments for callback methods with the aim of pushing a URL to a client.
delegate Task ClientUrlEventHandler(object Sender, ClientUrlEventArgs e)
Delegat for client URL callback methods.