Determines if requests may be forwarded from a Site. The value of this property is True if the Site can forward requests; otherwise, it is False (the default). The property value must be explicitly set to True when configuring the domain for request forwarding. Note: If the value is False, no requests may be forwarded from any virtual server in the site.


Namespace: FileNet.Api.Admin
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Property CanForwardRequests As Nullable(Of Boolean)
C#
Nullable<bool> CanForwardRequests { get; set; }
C++
property Nullable<bool> CanForwardRequests abstract  {
    Nullable<bool> get();
    void set(Nullable<boolvalue);
}
J#
/** property */
public Nullable<bool> get_CanForwardRequests();

/** property */
public void set_CanForwardRequests(Nullable<boolvalue);
JScript
public function get CanForwardRequests() : Nullable<bool>

public function set CanForwardRequests(value : Nullable<bool>);

Remarks

See Also