iControl.SystemConfigSync.Begindownload_file C# (CSharp) Method

Begindownload_file() public method

public Begindownload_file ( string file_name, long chunk_size, long file_offset, System callback, object asyncState ) : System.IAsyncResult
file_name string
chunk_size long
file_offset long
callback System
asyncState object
return System.IAsyncResult
        public System.IAsyncResult Begindownload_file(string file_name,long chunk_size,long file_offset, System.AsyncCallback callback, object asyncState)
        {
            return this.BeginInvoke("download_file", new object[] {
            file_name,
            chunk_size,
            file_offset}, callback, asyncState);
        }
SystemConfigSync