Managed Wrapper for Azure Rest API?
-
2012년 4월 4일 수요일 오전 2:39Is there a managed wrapper for the Azure Rest API? I do not feel like constructing these REST requests from scratch. Is there anything out there, you would think Microsoft would provide this out of the box?
모든 응답
-
2012년 4월 4일 수요일 오전 2:43
Yes, of course there is. Look at the WindowsAzure.StorageClient namespace http://msdn.microsoft.com/en-us/library/microsoft.windowsazure.storageclient.aspx
-
2012년 4월 4일 수요일 오전 2:44
Yes, of course there is. Look at the WindowsAzure.StorageClient namespace http://msdn.microsoft.com/en-us/library/microsoft.windowsazure.storageclient.aspx
better yet, have a look at
http://blogs.msdn.com/b/paolos/archive/2011/02/21/yet-another-application-to-handle-windows-azure-storage-services.aspx|
a sample that shows you how to use every single method of the StorageClient- 답변으로 표시됨 Arwind - MSFTModerator 2012년 4월 13일 금요일 오전 9:41
-
2012년 4월 4일 수요일 오전 4:10
Ryan's answer is specifically about the Windows Azure storage API.
There's also a Service Management API (for doing deployments, etc.), a Service Bus API, Access Control, etc... Not all of the APIs in the platform have managed client libraries, but many do.
-
2012년 4월 4일 수요일 오전 5:58
If you're looking for a managed wrapper for the Service Management API there's one on NuGet: http://nuget.org/packages/WindowsAzure.ServiceManagement.LibrarySandrino Di Mattia | Twitter: http://twitter.com/sandrinodm | Azure Blog: http://fabriccontroller.net/blog | Blog: http://sandrinodimattia.net/blog
- 답변으로 표시됨 Kayhustle11 2012년 4월 20일 금요일 오후 10:47
-
2012년 4월 8일 일요일 오후 5:59
-
2012년 4월 8일 일요일 오후 6:01
This would help... http://code.msdn.microsoft.com/windowsazure/Windows-Azure-CSManage-e3f1882c
Abin
In the above code sample, you may use the underlying Microsoft.WindowsAzure.ServiceManagement.dll to call the REST APIs through managed code...Abin
-
2012년 4월 20일 금요일 오후 10:48Thanks, thats what I was looking for.

