/// <summary> /// Creates a URLLoader object. /// </summary> public URLLoader(URLRequest request) { }
/// <summary> /// Sends and loads data from the specified URL. /// </summary> public void load(URLRequest request) { }
/// <summary> /// Starts the upload of a file selected by a user to a remote server. /// </summary> public void upload(URLRequest request, string uploadDataFieldName) { }
/// <summary> /// Starts the upload of a file selected by a user to a remote server. /// </summary> public void upload(URLRequest request, string uploadDataFieldName, bool testUpload) { }
/// <summary> /// Opens a dialog box that lets the user download a file from a remote server. /// </summary> public void download(URLRequest request) { }
/// <summary> /// Opens a dialog box that lets the user download a file from a remote server. /// </summary> public void download(URLRequest request, string defaultFileName) { }