Skip to content

Commit bfb0336

Browse files
committed
Update README.md
1 parent e3e30be commit bfb0336

File tree

1 file changed

+41
-8
lines changed

1 file changed

+41
-8
lines changed

README.md

Lines changed: 41 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,43 @@
1-
# storage-blob-dotnet-getting-started
2-
Basic Operations with Azure Storage Blob Service
1+
---
2+
services: storage
3+
platforms: dotnet
4+
author: jasonnewyork
5+
---
6+
7+
# Azure Storage: Blobs
8+
9+
Demonstrates how to use the Blob Storage service.
10+
Blob storage stores unstructured data such as text, binary data, documents or media files.
11+
Blobs can be accessed from anywhere in the world via HTTP or HTTPS.
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)
18+
319
## Running this sample
4-
Coming soon...
5-
## Deploy this sample to Azure
6-
Coming soon...
7-
## About the code
8-
Coming soon...
20+
21+
This sample can be run using either the Azure Storage Emulator that installs as part of this SDK - or by
22+
updating the App.Config file with your AccountName and Key.
23+
To run the sample using the Storage Emulator (default option):
24+
25+
1. Download and Install the Azure Storage Emulator [here](http://azure.microsoft.com/en-us/downloads/).
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+
3. Set breakpoints and run the project using F10.
28+
29+
To run the sample using the Storage Service
30+
31+
1. Open the app.config file and comment out the connection string for the emulator (UseDevelopmentStorage=True) and uncomment the connection string for the storage service (AccountName=[]...)
32+
2. Create a Storage Account through the Azure Portal and provide your [AccountName] and [AccountKey] in the App.Config file.
33+
3. Set breakpoints and run the project using F10.
34+
935
## More information
10-
Coming soon...
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/)
38+
- [Blob Service Concepts](http://msdn.microsoft.com/en-us/library/dd179376.aspx)
39+
- [Blob Service REST API](http://msdn.microsoft.com/en-us/library/dd135733.aspx)
40+
- [Blob Service C# API](http://go.microsoft.com/fwlink/?LinkID=398944)
41+
- [Delegating Access with Shared Access Signatures](http://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-shared-access-signature-part-1/)
42+
- [Storage Emulator](http://msdn.microsoft.com/en-us/library/azure/hh403989.aspx)
43+
- [Asynchronous Programming with Async and Await](http://msdn.microsoft.com/en-us/library/hh191443.aspx)

0 commit comments

Comments
 (0)