Skip to content

Commit 11cc34c

Browse files
committed
Add missing comment
1 parent 85e76ac commit 11cc34c

3 files changed

Lines changed: 21 additions & 4 deletions

File tree

src/ImageSharp.Web.Providers.Azure/Caching/AzureBlobStorageCacheOptions.cs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,16 @@ namespace SixLabors.ImageSharp.Web.Caching.Azure;
88
/// </summary>
99
public class AzureBlobStorageCacheOptions
1010
{
11-
/// <inheritdoc/>
11+
/// <summary>
12+
/// Gets or sets the Azure Blob Storage connection string.
13+
/// <see href="https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string."/>
14+
/// </summary>
1215
public string ConnectionString { get; set; } = null!;
1316

14-
/// <inheritdoc/>
17+
/// <summary>
18+
/// Gets or sets the Azure Blob Storage container name.
19+
/// Must conform to Azure Blob Storage container naming guidlines.
20+
/// <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata#container-names"/>
21+
/// </summary>
1522
public string ContainerName { get; set; } = null!;
1623
}

src/ImageSharp.Web.Providers.Azure/Providers/AzureBlobStorageImageProviderOptions.cs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,16 @@ public class AzureBlobStorageImageProviderOptions
1919
/// </summary>
2020
public class AzureBlobContainerClientOptions
2121
{
22-
/// <inheritdoc/>
22+
/// <summary>
23+
/// Gets or sets the Azure Blob Storage connection string.
24+
/// <see href="https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string."/>
25+
/// </summary>
2326
public string? ConnectionString { get; set; }
2427

25-
/// <inheritdoc/>
28+
/// <summary>
29+
/// Gets or sets the Azure Blob Storage container name.
30+
/// Must conform to Azure Blob Storage container naming guidlines.
31+
/// <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata#container-names"/>
32+
/// </summary>
2633
public string? ContainerName { get; set; }
2734
}

src/ImageSharp.Web.Providers.Azure/SeviceCollectionExtensions.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
namespace SixLabors.ImageSharp.Web;
1010

11+
/// <summary>
12+
/// Extension methods for <see cref="IServiceCollection"/> to simplify middleware service registration.
13+
/// </summary>
1114
public static class SeviceCollectionExtensions
1215
{
1316
/// <summary>

0 commit comments

Comments
 (0)