DRMLicenseRequestEvent.hx 381 B

123456789
  1. package flash.events;
  2. extern class DRMLicenseRequestEvent extends Event {
  3. @:flash.property var serverURL(get,set) : String;
  4. function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?inServerURL : String) : Void;
  5. private function get_serverURL() : String;
  6. private function set_serverURL(value : String) : String;
  7. static final LICENSE_REQUEST : String;
  8. }