Reputation: 5223
I am designing an Azure app and I have to estimate the costs per call type that I will be generating in Azure.
One of the Azure calls I plan to use is CloudBlob.ExistsAsync() and I am not sure if I am gonna get charged money for it or not? The documentation is not specific on this.
Upvotes: 0
Views: 156
Reputation: 6467
Yes, it will, primarily transaction count cost since the banwidth cost is very little for HEAD blob requests.
Upvotes: 1