Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ContractValidationEventArgs.cs
1using System;
3
5{
9 public class ContractValidationEventArgs : EventArgs
10 {
11 private readonly KeyValuePair<string, object>[] tags;
12 private readonly ContractStatus status;
13 private readonly object state;
14
22 params KeyValuePair<string, object>[] Tags)
23 : base()
24 {
25 this.status = Status;
26 this.state = State;
27 this.tags = Tags;
28 }
29
33 public ContractStatus Status => this.status;
34
38 public KeyValuePair<string, object>[] Tags => this.tags;
39
43 public object State => this.state;
44 }
45}
KeyValuePair< string, object >[] Tags
Associated tags with more information.
ContractValidationEventArgs(ContractStatus Status, object State, params KeyValuePair< string, object >[] Tags)
Event arguments for identity validation responses
ContractStatus
Validation Status of smart contract