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: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,28 +1,28 @@
1
1
---
2
2
services: storage
3
3
platforms: dotnet
4
-
author: perrysk-msft
4
+
author: tamram
5
5
---
6
6
7
-
# Getting Started with Azure Blob Service in .NET
7
+
# Azure Blob Storage Samples for .NET
8
8
9
9
Demonstrates how to use the Blob Storage service.
10
10
Blob storage stores unstructured data such as text, binary data, documents or media files.
11
11
Blobs can be accessed from anywhere in the world via HTTP or HTTPS.
12
12
13
-
Note: This sample uses the .NET 4.5 asynchronous programming model to demonstrate how to call the Storage Service using the
14
-
storage client libraries asynchronous API's. When used in real applications this approach enables you to improve the
15
-
responsiveness of your application. Calls to the storage service are prefixed by the await keyword.
16
-
If you don't have a Microsoft Azure subscription you can
17
-
get a FREE trial account [here](http://go.microsoft.com/fwlink/?LinkId=330212)
13
+
Note: This sample uses the .NET 4.5 asynchronous programming model to demonstrate how to call Azure Storage using asynchronous API calls. When used in real applications, this approach enables you to improve the
14
+
responsiveness of your application. Calls to Azure Storage are prefixed by the `await` keyword. For more information about asynchronous programming using the Async/Await pattern, see [Asynchronous Programming with Async and Await (C# and Visual Basic)](https://msdn.microsoft.com/library/hh191443.aspx).
15
+
16
+
If you don't already have a Microsoft Azure subscription, you can
17
+
get a FREE trial account [here](http://go.microsoft.com/fwlink/?LinkId=330212).
18
18
19
19
## Running this sample
20
20
21
21
This sample can be run using either the Azure Storage Emulator that installs as part of this SDK - or by
22
22
updating the App.Config file with your AccountName and Key.
23
23
To run the sample using the Storage Emulator (default option):
24
24
25
-
1. Download and Install the Azure Storage Emulator [here](http://azure.microsoft.com/en-us/downloads/).
25
+
1. Download and Install the Azure Storage Emulator [here](http://azure.microsoft.com/downloads/).
26
26
2. Start the Azure Storage Emulator (once only) by pressing the Start button or the Windows key and searching for it by typing "Azure Storage Emulator". Select it from the list of applications to start it.
27
27
3. Set breakpoints and run the project using F10.
28
28
@@ -33,8 +33,8 @@ To run the sample using the Storage Service
33
33
3. Set breakpoints and run the project using F10.
34
34
35
35
## More information
36
-
-[What is a Storage Account](http://azure.microsoft.com/en-us/documentation/articles/storage-whatis-account/)
37
-
-[Getting Started with Blobs](http://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-how-to-use-blobs/)
36
+
-[How to create, manage, or delete a storage account in the Azure Portal](https://azure.microsoft.com/en-us/documentation/articles/storage-create-storage-account/)
37
+
-[Get started with Azure Blob storage (object storage) using .NET](https://azure.microsoft.com/documentation/articles/storage-dotnet-how-to-use-blobs/)
38
38
-[Blob Service Concepts](http://msdn.microsoft.com/en-us/library/dd179376.aspx)
39
39
-[Blob Service REST API](http://msdn.microsoft.com/en-us/library/dd135733.aspx)
40
40
-[Blob Service C# API](http://go.microsoft.com/fwlink/?LinkID=398944)
0 commit comments