Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
KeyEventArgs.cs
1using System;
2
4{
10 public delegate void KeyEventHandler(object Sender, KeyEventArgs e);
11
15 public class KeyEventArgs : EventArgs
16 {
17 private readonly string name;
18 private readonly string lookupValue;
19 private string value;
20
26 public KeyEventArgs(string Name, string LookupValue)
27 {
28 this.name = Name;
29 this.lookupValue = LookupValue;
30 this.value = null;
31 }
32
36 public string Name => this.name;
37
41 public string LookupValue => this.lookupValue;
42
46 public string Value
47 {
48 get => this.value;
49 set => this.value = value;
50 }
51 }
52}
Event arguments for key events.
Definition: KeyEventArgs.cs:16
string LookupValue
Key lookup value.
Definition: KeyEventArgs.cs:41
KeyEventArgs(string Name, string LookupValue)
Event arguments for key events.
Definition: KeyEventArgs.cs:26
delegate void KeyEventHandler(object Sender, KeyEventArgs e)
Delegate for key event handlers.