Ejemplo n.º 1
0
		public static void add_select(FileReference that, Action<Event> value)
		{
			CommonExtensions.CombineDelegate(that, value, Event.SELECT);
		}
Ejemplo n.º 2
0
		public static void remove_progress(FileReference that, Action<ProgressEvent> value)
		{
			CommonExtensions.RemoveDelegate(that, value, ProgressEvent.PROGRESS);
		}
Ejemplo n.º 3
0
		public static void remove_securityError(FileReference that, Action<SecurityErrorEvent> value)
		{
			CommonExtensions.RemoveDelegate(that, value, SecurityErrorEvent.SECURITY_ERROR);
		}
Ejemplo n.º 4
0
		public static void add_open(FileReference that, Action<Event> value)
		{
			CommonExtensions.CombineDelegate(that, value, Event.OPEN);
		}
Ejemplo n.º 5
0
		public static void remove_open(FileReference that, Action<Event> value)
		{
			CommonExtensions.RemoveDelegate(that, value, Event.OPEN);
		}
Ejemplo n.º 6
0
		public static void remove_ioError(FileReference that, Action<IOErrorEvent> value)
		{
			CommonExtensions.RemoveDelegate(that, value, IOErrorEvent.IO_ERROR);
		}
Ejemplo n.º 7
0
		public static void remove_httpStatus(FileReference that, Action<HTTPStatusEvent> value)
		{
			CommonExtensions.RemoveDelegate(that, value, HTTPStatusEvent.HTTP_STATUS);
		}
Ejemplo n.º 8
0
		public static void remove_complete(FileReference that, Action<Event> value)
		{
			CommonExtensions.RemoveDelegate(that, value, Event.COMPLETE);
		}
Ejemplo n.º 9
0
		public static void remove_cancelled(FileReference that, Action<Event> value)
		{
			CommonExtensions.RemoveDelegate(that, value, Event.CANCEL);
		}
Ejemplo n.º 10
0
		public static void remove_uploadCompleteData(FileReference that, Action<DataEvent> value)
		{
			CommonExtensions.RemoveDelegate(that, value, DataEvent.UPLOAD_COMPLETE_DATA);
		}