Discuss this help topic in SecureBlackbox Forum

TElHTTPSClient.SuppressRedirectionContent

TElHTTPSClient     See also     


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


Specifies whether redirection content should be suppressed.

Declaration

[C#]
    bool SuppressRedirectionContent;

[VB.NET]
    Property SuppressRedirectionContent As Boolean

[Pascal]
    property SuppressRedirectionContent : boolean;

[C++]
    bool get_SuppressRedirectionContent();
    void set_SuppressRedirectionContent(bool Value);

[PHP]
    bool get_SuppressRedirectionContent()
    void set_SuppressRedirectionContent(bool $Value)

[Java]
    boolean getSuppressRedirectionContent();
    void setSuppressRedirectionContent(boolean Value);

Description

    If this property is set to True, the redirection content will be silently suppressed by TElHTTPSClient. Otherwise, the message containing a redirection code will be processed as usual, and event will be fired (and the data will be written to OutputStream). The default value is true.

See also:     OnData    

Discuss this help topic in SecureBlackbox Forum