DRMAuthenticationErrorEvent.hx 790 B

123456789101112131415
  1. package flash.events;
  2. @:require(flash10_1) extern class DRMAuthenticationErrorEvent extends ErrorEvent {
  3. @:flash.property var domain(get,set) : String;
  4. @:flash.property var serverURL(get,set) : String;
  5. @:flash.property var subErrorID(get,set) : Int;
  6. function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?inDetail : String, inErrorID : Int = 0, inSubErrorID : Int = 0, ?inServerURL : String, ?inDomain : String) : Void;
  7. private function get_domain() : String;
  8. private function get_serverURL() : String;
  9. private function get_subErrorID() : Int;
  10. private function set_domain(value : String) : String;
  11. private function set_serverURL(value : String) : String;
  12. private function set_subErrorID(value : Int) : Int;
  13. static final AUTHENTICATION_ERROR : String;
  14. }