ConoHaNet.OpenStackMember.CreateObject C# (CSharp) Method

CreateObject() public method

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