Class FtpStorageClient
FTP storage client.
Inherited Members
Namespace: FastReport.Cloud.StorageClient.Ftp
Assembly: FastReport.dll
Syntax
public class FtpStorageClient : CloudStorageClient
Constructors
FtpStorageClient()
Initializes a new instance of the FtpStorageClient class.
Declaration
public FtpStorageClient()
FtpStorageClient(String, String, String)
Initializes a new instance of the FtpStorageClient class.
Declaration
public FtpStorageClient(string server, string username, string password)
Parameters
Type | Name | Description |
---|---|---|
System.String | server | The FTP server. |
System.String | username | The username. |
System.String | password | The password. |
Properties
Password
Gets or sets the password.
Declaration
public string Password { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Server
Gets or sets the FTP server.
Declaration
public string Server { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Username
Gets or sets the username.
Declaration
public string Username { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
SaveMemoryStream(MemoryStream)
Saves a memory stream to cloud.
Declaration
protected override void SaveMemoryStream(MemoryStream ms)
Parameters
Type | Name | Description |
---|---|---|
System.IO.MemoryStream | ms | The memory stream that should be saved. |