示例#1
0
        public BthDevice(IBthDevice Device, Byte[] Master, Byte Lsb, Byte Msb) : base(new BthHandle(Lsb, Msb))
        {
            InitializeComponent();

            m_Device = Device;
            m_Master = Master;
        }
示例#2
0
        public BthDevice(IBthDevice device, byte[] master, byte lsb, byte msb) : base(new BthHandle(lsb, msb))
        {
            InitializeComponent();

            m_Device = device;
            m_Master = master;
        }
示例#3
0
        public BthDevice(IBthDevice Device, byte[] Master, byte Lsb, byte Msb)
            : base(new BthHandle(Lsb, Msb))
        {
            InitializeComponent();

            m_Device = Device;
            m_Master = Master;
        }
示例#4
0
        public BthDevice(IBthDevice device, byte[] master, byte lsb, byte msb)
            : base(new BthHandle(lsb, msb))
        {
            InitializeComponent();

            m_Device = device;
            m_Master = master;
        }
示例#5
0
        public BthDevice(IBthDevice device, PhysicalAddress master, byte lsb, byte msb)
            : base(new BthHandle(lsb, msb))
        {
            InitializeComponent();

            BluetoothDevice = device;
            HostAddress     = master;
        }
示例#6
0
        public BthDevice(IBthDevice device, PhysicalAddress master, byte lsb, byte msb)
            : base(new BthHandle(lsb, msb))
        {
            InitializeComponent();

            BluetoothDevice = device;
            HostAddress = master;
        }
示例#7
0
        public BthDs3(IBthDevice Device, Byte[] Master, Byte Lsb, Byte Msb) : base(new BthHandle(Lsb, Msb))
        {
            InitializeComponent();

            m_Device = Device;
            m_Master = Master;

            m_Timer = new Timer(On_Timer, null, Timeout.Infinite, Timeout.Infinite);
        }
示例#8
0
        public BthDs3(IBthDevice Device, Byte[] Master, Byte Lsb, Byte Msb)
            : base(new BthHandle(Lsb, Msb))
        {
            InitializeComponent();

            m_Device = Device;
            m_Master = Master;

            m_Timer = new Timer(On_Timer, null, Timeout.Infinite, Timeout.Infinite);
        }
示例#9
0
 public BthDs4(IBthDevice device, PhysicalAddress master, byte lsb, byte msb)
     : base(device, master, lsb, msb)
 {
 }
示例#10
0
 public BthDs4(IBthDevice device, PhysicalAddress master, byte lsb, byte msb)
     : base(device, master, lsb, msb)
 {
 }
示例#11
0
 public BthDs3(IBthDevice device, byte[] master, byte lsb, byte msb)
     : base(device, master, lsb, msb)
 {
 }
示例#12
0
文件: BthDs3.cs 项目: zw5/WiinUPro
 public BthDs3(IBthDevice Device, Byte[] Master, Byte Lsb, Byte Msb) : base(Device, Master, Lsb, Msb)
 {
 }
示例#13
0
 public BthDs4(IBthDevice device, byte[] master, byte lsb, byte msb)
     : base(device, master, lsb, msb)
 {
 }
示例#14
0
 protected BthDevice(IBthDevice device, PhysicalAddress master, byte lsb, byte msb)
     : base(new BthHandle(lsb, msb))
 {
     BluetoothDevice = device;
     HostAddress     = master;
 }
示例#15
0
 public BthDs4(IBthDevice Device, byte[] Master, byte Lsb, byte Msb)
     : base(Device, Master, Lsb, Msb)
 {
 }
示例#16
0
 protected BthDevice(IBthDevice device, PhysicalAddress master, byte lsb, byte msb)
     : base(new BthHandle(lsb, msb))
 {
     BluetoothDevice = device;
     HostAddress = master;
 }