C# Class QueueStorage.Program

Azure Queue Service Sample - The Queue Service provides reliable messaging for workflow processing and for communication between loosely coupled components of cloud services. This sample demonstrates how to perform common tasks including inserting, peeking, getting and deleting queue messages, as well as creating and deleting queues. Note: This sample uses the .NET 4.5 asynchronous programming model to demonstrate how to call the Storage Service using the storage client libraries asynchronous API's. When used in real applications this approach enables you to improve the responsiveness of your application. Calls to the storage service are prefixed by the await keyword. Documentation References: - What is a Storage Account - http://azure.microsoft.com/en-us/documentation/articles/storage-whatis-account/ - Getting Started with Queues - http://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-how-to-use-queues/ - Queue Service Concepts - http://msdn.microsoft.com/en-us/library/dd179353.aspx - Queue Service REST API - http://msdn.microsoft.com/en-us/library/dd179363.aspx - Queue Service C# API - http://go.microsoft.com/fwlink/?LinkID=398944 - Storage Emulator - http://msdn.microsoft.com/en-us/library/azure/hh403989.aspx - Asynchronous Programming with Async and Await - http://msdn.microsoft.com/en-us/library/hh191443.aspx
ファイルを表示 Open project: Azure-Samples/storage-queue-dotnet-getting-started

Public Methods

Method Description
Main ( string args ) : void

Method Details

Main() public static method

public static Main ( string args ) : void
args string
return void