コード例 #1
0
 public HotKeyUnregistrationFailedException(string message, GlobalHotKey hotKey) : base(message)
 {
     HotKey = hotKey;
 }
コード例 #2
0
 public HotKeyRegistrationFailedException(string message, GlobalHotKey hotKey, Exception inner) : base(message, inner)
 {
     HotKey = hotKey;
 }
コード例 #3
0
 public HotKeyAlreadyRegisteredException(string message, GlobalHotKey hotKey, Exception inner) : base(message, inner)
 {
     HotKey = hotKey;
 }