ConoHaNet.OpenStackMember.DeleteObjects C# (CSharp) Method

DeleteObjects() public method

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