NetMonitorEvent.hx 357 B

12345678
  1. package flash.events;
  2. extern class NetMonitorEvent extends Event {
  3. @:flash.property var netStream(get,never) : flash.net.NetStream;
  4. function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?netStream : flash.net.NetStream) : Void;
  5. private function get_netStream() : flash.net.NetStream;
  6. static final NET_STREAM_CREATE : String;
  7. }