To configure Azure Web API Service and perform different operations, follow these steps:
Code |
Copy Code
|
---|---|
string AzureConnectionString = "DefaultEndpointsProtocol=https;AccountName=coreapitest;AccountKey=UedqT2U9a8283Squaizv38GJWVEENRcHay/nFxo0/kBeh8STdZXk4vgSIxDQegOKoTOaUU3A8bywi4YgmVuRFA==;EndpointSuffix=core.windows.net"; app.UseStorageProviders().AddAzureStorage("Azure", "AzureStorageConnectionString"); |
You can choose to perform various operations, such as listing data, uploading, deleting or downloading a file, after registering the cloud service. To understand how to perform these operations, see Perform Operations.
Back to Top