HTTPStatusEvent.hx 226 B

1234567
  1. package flash.events;
  2. extern class HTTPStatusEvent extends Event {
  3. var status(default,null) : Int;
  4. function new(type : String, ?bubbles : Bool, ?cancelable : Bool, ?status : Int) : Void;
  5. static var HTTP_STATUS : String;
  6. }