Skip to content

Commit 43c0bb2

Browse files
authored
Changes GetBlockBlobReference to be public
Not a common scenario but it is nice to have this method public in case you want direct access to the blob storage configured for the media provider instead of having to setup up all of the connections manually based on the file system provider settings.
1 parent d7d422d commit 43c0bb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/UmbracoFileSystemProviders.Azure/AzureFileSystem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@ public static CloudBlobContainer CreateContainer(CloudBlobClient cloudBlobClient
780780
/// <returns>
781781
/// The <see cref="CloudBlockBlob"/> reference.
782782
/// </returns>
783-
private CloudBlockBlob GetBlockBlobReference(string path)
783+
public CloudBlockBlob GetBlockBlobReference(string path)
784784
{
785785
Current.Logger.Debug<AzureBlobFileSystem>($"GetBlockBlobReference(path) method executed with path:{path}");
786786

0 commit comments

Comments
 (0)