ConoHaNet.OpenStackMember.BulkDelete C# (CSharp) Method

BulkDelete() public method

public BulkDelete ( string>.IEnumerable items, string>.Dictionary headers = null, bool useInternalUrl = false ) : void
items string>.IEnumerable
headers string>.Dictionary
useInternalUrl bool
return void
        public void BulkDelete(IEnumerable<KeyValuePair<string, string>> items, Dictionary<string, string> headers = null, bool useInternalUrl = false)
        {
            FilesProvider.BulkDelete(items, headers, this.DefaultRegion, useInternalUrl, this.Identity);
        }
OpenStackMember