Class FtpInput
FtpInput
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Bitmovin.Api.Sdk.Models
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class FtpInput : Input
Properties
Host
Host URL or IP of the FTP server (required)
Declaration
public string Host { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Passive
Use passive mode. Default is true.
Declaration
public bool? Passive { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
Password
Your FTP password
Declaration
public string Password { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Port
Port to use, standard for FTP: 21
Declaration
public int? Port { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
RemoteVerificationEnabled
Ensure that connections originate from the declared ftp host. Default is true.
Declaration
public bool? RemoteVerificationEnabled { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
Username
Your FTP Username
Declaration
public string Username { get; set; }
Property Value
Type | Description |
---|---|
System.String |