package openfl.net {
	
	
	/**
	 * @externs
	 * The URLLoaderDataFormat class provides values that specify how downloaded
	 * data is received.
	 */
	final public class URLLoaderDataFormat {
		
		/**
		 * Specifies that downloaded data is received as raw binary data.
		 */
		public static const BINARY:String = "binary";
		
		/**
		 * Specifies that downloaded data is received as text.
		 */
		public static const TEXT:String = "text";
		
		/**
		 * Specifies that downloaded data is received as URL-encoded variables.
		 */
		public static const VARIABLES:String = "variables";
		
	}
	
	
}