Azure.Storage.BlobStorage.DeleteBlob C# (CSharp) 메소드

DeleteBlob() 공개 메소드

Deletes the block blob with the given unique blob name
public DeleteBlob ( string blobId ) : void
blobId string The unique block blob identifier
리턴 void
        public void DeleteBlob(string blobId)
        {
            var blob = cloudBlobContainer.GetBlockBlobReference(blobId);
            blob.DeleteIfExists();
        }