Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ClientUrlEventArgs.cs
1namespace Paiwise
2{
6 public class ClientUrlEventArgs
7 {
13 public ClientUrlEventArgs(string Url, object State)
14 {
15 this.Url = Url;
16 this.State = State;
17 }
18
22 public string Url { get; }
23
27 public object State { get; }
28 }
29}
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.