我使用http://msdn.microsoft.com/en-us/library/windowsazure/hh343262.aspx作为参考。
那页说
"The $logs container is located in the blob namespace of the storage account,
for example: http://<accountname>.blob.core.windows.net/$logs"
进一步说
"you can use the ListBlobs method to access the blobs in the $logs container."
现在在这个页面http://msdn.microsoft.com/en-us/library/windowsazure/ee772878.aspx它给出了一个例子:
CloudBlobClient blobClient =
new CloudBlobClient(blobEndpoint,
new StorageCredentialsAccountAndKey("accountName", "key"));
CloudBlobContainer container = blobClient.GetContainerReference("myblobs");
问题:如果 blob 存储在http://accountname.blob.core.windows.net/ $logs 那么我该如何制作 blobEndPoint?
我应该把什么作为 GetContainerReference("") ?我不知道容器的名称,我是 Azure 的新手。
谢谢,安德鲁