File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
src/Cofoundry.Plugins.Azure Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ public class AzureBlobFileService : IFileStoreService
2222
2323 private readonly CloudBlobClient _blobClient ;
2424 private static ConcurrentDictionary < string , byte > _initializedContainers = new ConcurrentDictionary < string , byte > ( ) ;
25- private static ConcurrentBag < string > _initializedContainers2 = new ConcurrentBag < string > ( ) ;
2625
2726 public AzureBlobFileService (
2827 AzureSettings settings
@@ -44,11 +43,11 @@ AzureSettings settings
4443 #region public methods
4544
4645 /// <summary>
47- /// Determins if the specified file exists in the container
46+ /// Determins if the specified file exists in the container.
4847 /// </summary>
49- /// <param name="containerName">The name of the container to look for the filew </param>
50- /// <param name="fileName">Name of the file to look for</param>
51- /// <returns>True if the file exists; otherwise false</returns>
48+ /// <param name="containerName">The name of the container to look for the file. </param>
49+ /// <param name="fileName">Name of the file to look for. </param>
50+ /// <returns>True if the file exists; otherwise false. </returns>
5251 public async Task < bool > ExistsAsync ( string containerName , string fileName )
5352 {
5453 var container = await GetBlobContainerAsync ( containerName ) ;
You can’t perform that action at this time.
0 commit comments