A boolean value that controls the run enabled status of the import agent sub-component of the CFS importer. When false, the agent does not run. When true, the agent runs, but the importer as a whole might still not process import requests when the dispatcher sub-component has not also been enabled. For more information, see the DispatcherEnabled property on the ICFSImportAgentConfiguration interface.

For a discussion of the importer sub-components, see the ICFSImportAgentConfiguration interface.


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

Syntax

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

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

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

Remarks

See Also