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 は初めてです。
ありがとう、アンドリュー