File tree Expand file tree Collapse file tree
src/ImageSharp.Web.Providers.Azure Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,9 +8,16 @@ namespace SixLabors.ImageSharp.Web.Caching.Azure;
88/// </summary>
99public 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}
Original file line number Diff line number Diff line change @@ -19,9 +19,16 @@ public class AzureBlobStorageImageProviderOptions
1919/// </summary>
2020public 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}
Original file line number Diff line number Diff line change 88
99namespace SixLabors . ImageSharp . Web ;
1010
11+ /// <summary>
12+ /// Extension methods for <see cref="IServiceCollection"/> to simplify middleware service registration.
13+ /// </summary>
1114public static class SeviceCollectionExtensions
1215{
1316 /// <summary>
You can’t perform that action at this time.
0 commit comments