Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
QueryEventArgs.cs
1using System;
2
4{
8 public class QueryEventArgs : EventArgs
9 {
10 private readonly Query query;
11
17 {
18 this.query = Query;
19 }
20
24 public Query Query => this.query;
25 }
26}
Base class for all query-related events.
QueryEventArgs(Query Query)
Base class for all query-related events.
Query Query
Query originating the event.
Class handling the reception of data from a query.
Definition: Query.cs:12