This commit is contained in:
Dante
2026-05-22 11:48:42 -07:00
parent 0a5075319f
commit 05f197c291
2665 changed files with 198448 additions and 1 deletions

View File

@ -0,0 +1,20 @@
package flash.events;
@:require(flash10_1) extern class DRMAuthenticateEvent extends Event {
@:flash.property var authenticationType(get,never) : String;
@:flash.property var header(get,never) : String;
@:flash.property var netstream(get,never) : flash.net.NetStream;
@:flash.property var passwordPrompt(get,never) : String;
@:flash.property var urlPrompt(get,never) : String;
@:flash.property var usernamePrompt(get,never) : String;
function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?header : String, ?userPrompt : String, ?passPrompt : String, ?urlPrompt : String, ?authenticationType : String, ?netstream : flash.net.NetStream) : Void;
private function get_authenticationType() : String;
private function get_header() : String;
private function get_netstream() : flash.net.NetStream;
private function get_passwordPrompt() : String;
private function get_urlPrompt() : String;
private function get_usernamePrompt() : String;
static final AUTHENTICATION_TYPE_DRM : String;
static final AUTHENTICATION_TYPE_PROXY : String;
static final DRM_AUTHENTICATE : String;
}