Gets or sets a Boolean value that specifies the data type for file transfers.
Public Property UseBinary As Boolean
public bool UseBinary { get; set; }
public: property bool UseBinary { bool get (); void set (bool value); }
member UseBinary : bool with get, set
A new value was specified for this property for a request that is already in progress.
If you are sending binary data, such as an image, set this property to true. If you are sending text, set the property to false. Specifying true causes the FtpWebRequest to send a "TYPE I" command to the server. Specifying false causes the FtpWebRequest to send a "Type A" command to the server. FTP servers can ignore these commands.
Changing UseBinary after calling the GetRequestStream, BeginGetRequestStream, GetResponse, or BeginGetResponse method causes an InvalidOperationException exception.
The following code example retrieves and displays property values for a specified FtpWebRequest object.
Console.WriteLine("Passive: {0} Keep alive: {1} Binary: {2} Timeout: {3}.", request.UsePassive, request.KeepAlive, request.UseBinary, If(request.Timeout = -1, "none", request.Timeout.ToString()))
Console.WriteLine("Passive: {0} Keep alive: {1} Binary: {2} Timeout: {3}.", request.UsePassive, request.KeepAlive, request.UseBinary, request.Timeout == -1 ? "none" : request.Timeout.ToString() );
Console::WriteLine( "Passive: {0} Keep alive: {1} Binary: {2} Timeout: {3}.", request->UsePassive, request->KeepAlive, request->UseBinary, request->Timeout == -1 ? "none" : request->Timeout.ToString() );
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2