Discuss this help topic in SecureBlackbox Forum

TElHTTPSClient.Use100Continue

TElHTTPSClient     


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


Specifies whether to use the 100-continue approach.

Declaration

[C#]
    bool Use100Continue;

[VB.NET]
    Property Use100Continue As Boolean

[Pascal]
    property Use100Continue : boolean;

[C++]
    bool get_Use100Continue();
    void set_Use100Continue(bool Value);

[PHP]
    bool get_Use100Continue()
    void set_Use100Continue(bool $Value)

[Java]
    boolean getUse100Continue();
    void setUse100Continue(boolean Value);

Description

    Set this property to True to use the 100-continue approach for POST and PUT commands. In this case before the request body client sends a request message whether the server is willing to accept the request body. The request body is sent only if the server accepts it.

Discuss this help topic in SecureBlackbox Forum