/// <summary> /// D365FO_DIXF_ZipPackage /// </summary> /// This function compresses files inside a folder <pathToArchive> to a /// ZIP-archive <pathToArchive.zip> and places it into the folder /// <pathToArchive>. The value returned is the relative path to the /// ZIP-archive inside the BLOB container: /// <pathToArchive>/<pathToArchive.zip> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='bLOBContainer'> /// Name of BLOB container in the specified Azure Storage Account /// </param> /// <param name='pathToArchive'> /// Name of folder to be archived inside the BLOB container /// </param> public static void GetD365foDixfZippackage(this IDMFCreatePackage operations, string bLOBContainer, string pathToArchive) { Task.Factory.StartNew(s => ((IDMFCreatePackage)s).GetD365foDixfZippackageAsync(bLOBContainer, pathToArchive), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); }
/// <summary> /// D365FO_DIXF_ZipPackage /// </summary> /// This function compresses files inside a folder <pathToArchive> to a /// ZIP-archive <pathToArchive.zip> and places it into the folder /// <pathToArchive>. The value returned is the relative path to the /// ZIP-archive inside the BLOB container: /// <pathToArchive>/<pathToArchive.zip> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='bLOBContainer'> /// Name of BLOB container in the specified Azure Storage Account /// </param> /// <param name='pathToArchive'> /// Name of folder to be archived inside the BLOB container /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task PostD365foDixfZippackageAsync(this IDMFCreatePackage operations, string bLOBContainer, string pathToArchive, CancellationToken cancellationToken = default(CancellationToken)) { await operations.PostD365foDixfZippackageWithHttpMessagesAsync(bLOBContainer, pathToArchive, null, cancellationToken).ConfigureAwait(false); }