Esempio n. 1
0
 public static void remove_unload(LoaderInfo that, Action<Event> value)
 {
     CommonExtensions.RemoveDelegate(that, value, Event.UNLOAD);
 }
Esempio n. 2
0
 public static void remove_progress(LoaderInfo that, Action<ProgressEvent> value)
 {
     CommonExtensions.RemoveDelegate(that, value, ProgressEvent.PROGRESS);
 }
Esempio n. 3
0
 public static void add_unload(LoaderInfo that, Action<Event> value)
 {
     CommonExtensions.CombineDelegate(that, value, Event.UNLOAD);
 }
Esempio n. 4
0
 public static void add_open(LoaderInfo that, Action<Event> value)
 {
     CommonExtensions.CombineDelegate(that, value, Event.OPEN);
 }
Esempio n. 5
0
 public static void remove_open(LoaderInfo that, Action<Event> value)
 {
     CommonExtensions.RemoveDelegate(that, value, Event.OPEN);
 }
Esempio n. 6
0
 public static void remove_ioError(LoaderInfo that, Action<IOErrorEvent> value)
 {
     CommonExtensions.RemoveDelegate(that, value, IOErrorEvent.IO_ERROR);
 }
Esempio n. 7
0
 public static void remove_init(LoaderInfo that, Action<Event> value)
 {
     CommonExtensions.RemoveDelegate(that, value, Event.INIT);
 }
Esempio n. 8
0
 public static void add_init(LoaderInfo that, Action<Event> value)
 {
     CommonExtensions.CombineDelegate(that, value, Event.INIT);
 }
Esempio n. 9
0
 public static void remove_httpStatus(LoaderInfo that, Action<HTTPStatusEvent> value)
 {
     CommonExtensions.RemoveDelegate(that, value, HTTPStatusEvent.HTTP_STATUS);
 }
Esempio n. 10
0
 public static void remove_complete(LoaderInfo that, Action<Event> value)
 {
     CommonExtensions.RemoveDelegate(that, value, Event.COMPLETE);
 }