FtpWebRequest.UseBinary Property
Assembly: System (in system.dll)
/** @property */ public boolean get_UseBinary () /** @property */ public void set_UseBinary (boolean value)
public function get UseBinary () : boolean public function set UseBinary (value : boolean)
Property Value
true to indicate to the server that the data to be transferred is binary; false to indicate that the data is text. The default value is true.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, request.Timeout == -1 ? "none" : request.Timeout.ToString() );
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.