NetMonitorEvent.hx 284 B

1234567
  1. package flash.events;
  2. extern class NetMonitorEvent extends Event {
  3. var netStream(default,null) : flash.net.NetStream;
  4. function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?netStream : flash.net.NetStream) : Void;
  5. static var NET_STREAM_CREATE : String;
  6. }