ConoHaNet.OpenStackMember.CreateObjectFromFile C# (CSharp) Method

CreateObjectFromFile() public method

public CreateObjectFromFile ( string container, string filePath, string objectName = null, string contentType = null, int chunkSize = 4096, string>.Dictionary headers = null, Action progressUpdated = null, bool useInternalUrl = false ) : void
container string
filePath string
objectName string
contentType string
chunkSize int
headers string>.Dictionary
progressUpdated Action
useInternalUrl bool
return void
        public void CreateObjectFromFile(string container, string filePath, string objectName = null, string contentType = null, int chunkSize = 4096, Dictionary<string, string> headers = null, Action<long> progressUpdated = null, bool useInternalUrl = false)
        {
            FilesProvider.CreateObjectFromFile(container, filePath, objectName, contentType, chunkSize, headers, this.DefaultRegion, progressUpdated, useInternalUrl, this.Identity);
        }
OpenStackMember