iControl.SystemConfigSync.Begindownload_file C# (CSharp) 메소드

Begindownload_file() 공개 메소드

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
리턴 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