File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ public static class BlobAccountExtensions
16
16
/// </summary>
17
17
[ EditorBrowsable ( EditorBrowsableState . Never ) ]
18
18
public static BlobServiceClient CreateCloudBlobClient ( this CloudStorageAccount account )
19
- => CreateBlobClient ( account ) ;
19
+ => CreateBlobServiceClient ( account ) ;
20
20
21
21
/// <summary>
22
22
/// Creates a Blob service client from the given account.
23
23
/// </summary>
24
- public static BlobServiceClient CreateBlobClient ( this CloudStorageAccount account )
24
+ public static BlobServiceClient CreateBlobServiceClient ( this CloudStorageAccount account )
25
25
{
26
26
if ( account . BlobEndpoint == null )
27
27
throw new InvalidOperationException ( "No blob endpoint configured." ) ;
Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ public static class QueueAccountExtensions
16
16
/// </summary>
17
17
[ EditorBrowsable ( EditorBrowsableState . Never ) ]
18
18
public static QueueServiceClient CreateCloudQueueClient ( this CloudStorageAccount account )
19
- => CreateQueueClient ( account ) ;
19
+ => CreateQueueServiceClient ( account ) ;
20
20
21
21
/// <summary>
22
22
/// Creates a Queue service client from the given account.
23
23
/// </summary>
24
- public static QueueServiceClient CreateQueueClient ( this CloudStorageAccount account )
24
+ public static QueueServiceClient CreateQueueServiceClient ( this CloudStorageAccount account )
25
25
{
26
26
if ( account . QueueEndpoint == null )
27
27
throw new InvalidOperationException ( "No queue endpoint configured." ) ;
Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ public static class TableAccountExtensions
16
16
/// </summary>
17
17
[ EditorBrowsable ( EditorBrowsableState . Never ) ]
18
18
public static TableServiceClient CreateCloudTableClient ( this CloudStorageAccount account )
19
- => CreateTableClient ( account ) ;
19
+ => CreateTableServiceClient ( account ) ;
20
20
21
21
/// <summary>
22
22
/// Creates a Table service client from the given account.
23
23
/// </summary>
24
- public static TableServiceClient CreateTableClient ( this CloudStorageAccount account )
24
+ public static TableServiceClient CreateTableServiceClient ( this CloudStorageAccount account )
25
25
{
26
26
if ( account . TableEndpoint == null )
27
27
throw new InvalidOperationException ( "No table endpoint configured." ) ;
You can’t perform that action at this time.
0 commit comments