Click to Rate and Give Feedback
TechNet
TechNet Library
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2010/.NET Framework 4

Other versions are also available for the following:
.NET Framework Class Library
FtpWebRequest..::.UseBinary Property

Gets or sets a Boolean value that specifies the data type for file transfers.

Namespace:  System.Net
Assembly:  System (in System.dll)
Visual Basic
Public Property UseBinary As Boolean
C#
public bool UseBinary { get; set; }
Visual C++
public:
property bool UseBinary {
    bool get ();
    void set (bool value);
}
F#
member UseBinary : bool with get, set

Property Value

Type: System..::.Boolean
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.
ExceptionCondition
InvalidOperationException

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.

Visual Basic
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()))
C#
Console.WriteLine("Passive: {0}  Keep alive: {1}  Binary: {2} Timeout: {3}.", 
    request.UsePassive, 
    request.KeepAlive, 
    request.UseBinary,
    request.Timeout == -1 ? "none" : request.Timeout.ToString()
);
Visual C++
      Console::WriteLine( "Passive: {0}  Keep alive: {1}  Binary: {2} Timeout: {3}.", request->UsePassive, request->KeepAlive, request->UseBinary, request->Timeout == -1 ? "none" : request->Timeout.ToString() );

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

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

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
GetResponse ignores this property      Andrew Sachen   |   Edit   |   Show History
A packet log will reveal that setting UseBinary to True and using the GetResponse function will not work as intended. This is particularly annoying when communicating with an FTP client that only allows GetFileSize in Binary mode.
Tags What's this?: Add a tag
Flag as ContentBug
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker