2
0

DRMDeviceGroupErrorEvent.hx 612 B

1234567891011
  1. package flash.events;
  2. extern class DRMDeviceGroupErrorEvent extends ErrorEvent {
  3. var deviceGroup : flash.net.drm.DRMDeviceGroup;
  4. var drmUpdateNeeded(default,null) : Bool;
  5. var subErrorID : Int;
  6. var systemUpdateNeeded(default,null) : Bool;
  7. function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?errorDetail : String, errorCode : Int = 0, subErrorID : Int = 0, ?deviceGroup : flash.net.drm.DRMDeviceGroup, systemUpdateNeeded : Bool = false, drmUpdateNeeded : Bool = false) : Void;
  8. static var ADD_TO_DEVICE_GROUP_ERROR : String;
  9. static var REMOVE_FROM_DEVICE_GROUP_ERROR : String;
  10. }