Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ClusterResourceEventArgs.cs
1using System;
2
4{
8 public class ClusterResourceEventArgs : EventArgs
9 {
10 private readonly string resource;
11 private readonly object state;
12
19 {
20 this.resource = Resource;
21 this.state = State;
22 }
23
27 public string Resource => this.resource;
28
32 public object State => this.state;
33 }
34}
Event arguments for cluster resource events.
object State
State object passed on to the original request.
ClusterResourceEventArgs(string Resource, object State)
Event arguments for cluster resource events.