Exemple #1
0
        public void DeleteBlob(string containderName, string key)
        {
            var bh = new BlobHelper();

            if (bh.Exists(containderName, key))
            {
                bh.DeleteBlob(containderName, key);
            }
        }