Inheritance: AdapterLib.AdapterDevice
コード例 #1
0
        public void AddBulb(MockLightingServiceHandler handler)
        {
            var bulb = new MockBulbDevice(handler);

            this.devices.Add(bulb);
            this.NotifyDeviceArrival(bulb);
        }
コード例 #2
0
 public void AddBulb(MockLightingServiceHandler handler)
 {
     var bulb = new MockBulbDevice(handler);
     this.devices.Add(bulb);
     this.NotifyDeviceArrival(bulb);
 }