Exemple #1
0
 /// <summary>
 /// Delete all blobs matching the provided blob name prefix.
 /// </summary>
 /// <remarks>
 /// <para>This method is idempotent.</para>
 /// </remarks>
 public static void DeleteAllBlobs(this IBlobStorageProvider provider, IBlobLocation locationPrefix)
 {
     provider.DeleteAllBlobs(locationPrefix.ContainerName, locationPrefix.Path);
 }