You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Umbraco.StorageProviders.AzureBlob/IO/AzureBlobFileSystem.cs
+19-19Lines changed: 19 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,7 @@ public AzureBlobFileSystem(AzureBlobFileSystemOptions options, IHostingEnvironme
53
53
/// <exception cref="System.ArgumentNullException"><paramref name="blobContainerClient" /> is <c>null</c>.</exception>
54
54
/// <exception cref="System.ArgumentNullException"><paramref name="ioHelper" /> is <c>null</c>.</exception>
55
55
/// <exception cref="System.ArgumentNullException"><paramref name="contentTypeProvider" /> is <c>null</c>.</exception>
56
+
[System.Diagnostics.CodeAnalysis.SuppressMessage("Design","CA1054:URI-like parameters should not be strings",Justification="This parameter is only a part of the URL.")]
// TODO: Might be better to use a globbing library
@@ -268,6 +268,7 @@ public bool FileExists(string path)
268
268
269
269
/// <inheritdoc />
270
270
/// <exception cref="System.ArgumentNullException"><paramref name="fullPathOrUrl" /> is <c>null</c>.</exception>
271
+
[System.Diagnostics.CodeAnalysis.SuppressMessage("Design","CA1054:URI-like parameters should not be strings",Justification="This method is inherited from an interface.")]
271
272
publicstringGetRelativePath(stringfullPathOrUrl)
272
273
{
273
274
ArgumentNullException.ThrowIfNull(fullPathOrUrl);
@@ -298,6 +299,7 @@ public string GetFullPath(string path)
298
299
299
300
/// <inheritdoc />
300
301
/// <exception cref="System.ArgumentNullException"><paramref name="path" /> is <c>null</c>.</exception>
302
+
[System.Diagnostics.CodeAnalysis.SuppressMessage("Design","CA1055:URI-like return values should not be strings",Justification="This method is inherited from an interface.")]
301
303
publicstringGetUrl(string?path)
302
304
{
303
305
ArgumentNullException.ThrowIfNull(path);
@@ -338,7 +340,7 @@ public BlobClient GetBlobClient(string path)
0 commit comments