XMLSocket.hx 292 B

123456789
  1. package flash.net;
  2. extern class XMLSocket extends flash.events.EventDispatcher {
  3. var connected(default,null) : Bool;
  4. function new(?host : String, ?port : Int) : Void;
  5. function close() : Void;
  6. function connect(host : String, port : Int) : Void;
  7. function send(object : Dynamic) : Void;
  8. }