This method uploads a byte array to a file on the remote server specified by a host name and path.

[Visual Basic] Public Function FtpUploadByteArrayToFile(ByVal remoteHost As String, ByVal remotePath As String, ByVal data As Byte()) As Boolean
[C#] public bool FtpUploadByteArrayToFile(string remoteHost, string remotePath, byte[] data);

Parameters

remoteHost

DNS style domain name or IP address

remotePath

Path to the file on the remote server

data

Data in byte array

Return Value

Returns True if successful, otherwise returns False

Explanation

The FtpUploadByteArrayToFile method uploads a byte array to a file on the remote server specified by a host name and path.

This method is enabled for FTP protocol.

Example

[Visual Basic.NET]

Dim Ret As Boolean
'Username and password
ImageKit1.File.FtpCredentials = New NetworkCredential("user", "password")
'Passive mode
ImageKit1.File.FtpPassive = True
Ret = ImageKit1.File.FtpUploadByteArrayToFile("www.newtone.co.jp", "test/test.jpg", data)

[Visual C#.NET]

bool Ret;
//Username and password
ImageKit1.File.FtpCredentials = new NetworkCredential("user", "password");
//Passive mode
ImageKit1.File.FtpPassive = true;
Ret = ImageKit1.File.FtpUploadByteArrayToFile("www.newtone.co.jp", "test/test.jpg", data);

See Also

ImageKit.File Members | Newtone.ImageKit.Wpf.ImageKit

 

The ImageKit WPF is created by Newtone Corporation