Saves the content to Amazon S3 by given bucket name, key, and content.

Namespace: Karamasoft.WebControls.UltimateEditor
Assembly: UltimateEditor (in UltimateEditor.dll) Version: 3.7.4186.26618

Syntax

C#
public void SaveContentToAmazonS3(
	string bucketName,
	string key,
	string content
)
Visual Basic
Public Sub SaveContentToAmazonS3 ( _
	bucketName As String, _
	key As String, _
	content As String _
)
Visual C++
public:
void SaveContentToAmazonS3(
	String^ bucketName, 
	String^ key, 
	String^ content
)

Parameters

bucketName
Type: System..::..String
Bucket name in Amazon S3.
key
Type: System..::..String
Key of the object in Amazon S3 that stores the editor content.
content
Type: System..::..String
Content of the editor to be stored in Amazon S3.

See Also