ConoHaNet.OpenStackMember.MoveObject C# (CSharp) Method

MoveObject() public method

public MoveObject ( string sourceContainer, string sourceObjectName, string destinationContainer, string destinationObjectName, string destinationContentType = null, string>.Dictionary headers = null, bool useInternalUrl = false ) : void
sourceContainer string
sourceObjectName string
destinationContainer string
destinationObjectName string
destinationContentType string
headers string>.Dictionary
useInternalUrl bool
return void
        public void MoveObject(string sourceContainer, string sourceObjectName, string destinationContainer, string destinationObjectName, string destinationContentType = null, Dictionary<string, string> headers = null, bool useInternalUrl = false)
        {
            FilesProvider.MoveObject(sourceContainer, sourceObjectName, destinationContainer, destinationObjectName, destinationContentType, headers, this.DefaultRegion, useInternalUrl, this.Identity);
        }
OpenStackMember