DRMErrorEvent.hx 1008 B

12345678910111213141516
  1. package flash.events;
  2. @:require(flash10_1) extern class DRMErrorEvent extends ErrorEvent {
  3. @:flash.property var contentData(get,set) : flash.net.drm.DRMContentData;
  4. @:flash.property var drmUpdateNeeded(get,never) : Bool;
  5. @:flash.property var subErrorID(get,never) : Int;
  6. @:flash.property var systemUpdateNeeded(get,never) : Bool;
  7. function new(?type : String, bubbles : Bool = false, cancelable : Bool = false, ?inErrorDetail : String, inErrorCode : Int = 0, insubErrorID : Int = 0, ?inMetadata : flash.net.drm.DRMContentData, inSystemUpdateNeeded : Bool = false, inDrmUpdateNeeded : Bool = false) : Void;
  8. private function get_contentData() : flash.net.drm.DRMContentData;
  9. private function get_drmUpdateNeeded() : Bool;
  10. private function get_subErrorID() : Int;
  11. private function get_systemUpdateNeeded() : Bool;
  12. private function set_contentData(value : flash.net.drm.DRMContentData) : flash.net.drm.DRMContentData;
  13. static final DRM_ERROR : String;
  14. static final DRM_LOAD_DEVICEID_ERROR : String;
  15. }