Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ContractsEventArgs.cs
2
4{
9 {
10 private readonly Contract[] contracts;
11 private readonly string[] references;
12
19 public ContractsEventArgs(IqResultEventArgs e, Contract[] Contracts, string[] ReferencesOnly)
20 : base(e)
21 {
22 this.contracts = Contracts;
23 this.references = ReferencesOnly;
24 }
25
29 public Contract[] Contracts => this.contracts;
30
34 public string[] References => this.references;
35 }
36}
Contains the definition of a contract
Definition: Contract.cs:22
ContractsEventArgs(IqResultEventArgs e, Contract[] Contracts, string[] ReferencesOnly)
Event arguments for ID References responses
string[] References
References to contracts that could not be returned.
Event arguments for responses to IQ queries.