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