iControl.SystemConfigSync.download_configuration C# (CSharp) Method

download_configuration() private method

private download_configuration ( string config_name, long chunk_size, long &file_offset ) : SystemConfigSyncFileTransferContext
config_name string
chunk_size long
file_offset long
return SystemConfigSyncFileTransferContext
        public SystemConfigSyncFileTransferContext download_configuration(
		string config_name,
		long chunk_size,
		ref long file_offset
	)
        {
            object [] results = this.Invoke("download_configuration", new object [] {
                config_name,
                chunk_size,
                file_offset});
            file_offset = ((long)(results[1]));
            return ((SystemConfigSyncFileTransferContext)(results[0]));
        }
SystemConfigSync