Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.VirtualHostName

TElSimpleFTPSClient     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This property tells the client to send HOST command to the server before logging in.

Declaration

[C#]
    string VirtualHostName;

[VB.NET]
    Property VirtualHostName As String

[Pascal]
    property VirtualHostName : string;

[C++]
    void get_VirtualHostName(std::string &OutResult);
    void set_VirtualHostName(const std::string &Value);

[PHP]
    string get_VirtualHostName()
    void set_VirtualHostName(string $Value)

[Java]
    String getVirtualHostName();
    void setVirtualHostName(String Value);

Description

    When connecting to the server that serves multiple virtual host names, you need to specify the name of the host you are trying to get to. This property allows you to set its name. The property should be set before calling the Login method.

See also:     ExtHOSTSupported     Login    

Discuss this help topic in SecureBlackbox Forum