コード例 #1
0
ファイル: USBNotifier.cs プロジェクト: MEEEngineer/winusbnet
 internal USBEvent(USBEventType type, Guid guid, string devicePath)
 {
     this.Guid = guid;
     this.DevicePath = devicePath;
     this.Type= type;
 }
コード例 #2
0
 internal USBEvent(USBEventType type, Guid guid, string devicePath)
 {
     this.Guid       = guid;
     this.DevicePath = devicePath;
     this.Type       = type;
 }
コード例 #3
0
 public USBEventArgs(USBEventType Type, USBDisk Disk)
 {
     this.EventType = Type;
     this.Disk      = Disk;
 }