C# 클래스 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
파일 보기 프로젝트 열기: Azure-Samples/storage-queue-dotnet-getting-started

공개 메소드들

메소드 설명
Main ( string args ) : void

메소드 상세

Main() 공개 정적인 메소드

public static Main ( string args ) : void
args string
리턴 void