ConoHaNet.OpenStackMember.CreateContainer C# (CSharp) Method

CreateContainer() public method

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