Example #1
0
 public UpnpDevice(Guid id, string friendlyName, UpnpNtDeviceType deviceType, UpnpManufacturer manufacturer, UpnpModel model) : base(new UpnpFragmentWithId(deviceType, new UpnpNt(id)), friendlyName, manufacturer, model)
 {
 }
Example #2
0
 internal UpnpBaseDevice(IUpnpTypeMatchable deviceNt, string friendlyName, UpnpManufacturer manufacturer, UpnpModel model)
 {
     this.DeviceNt     = deviceNt;
     this.FriendlyName = friendlyName;
     this.Manufacturer = manufacturer;
     this.Model        = model;
 }