Microsoft Internet Security and Acceleration Server 2004 SDK

LogFileDirectoryType Property of IFPCLog[C++]

FPCLog.LogFileDirectoryType [Visual Basic]

[C++]

The LogFileDirectoryType property gets or sets a value from the FpcLogFileDirectoryType enumerated type that indicates the type of path specified for the log files.

HRESULT get_LogFileDirectoryType(
  FpcLogFileDirectoryType* pDirectoryType
);

HRESULT put_LogFileDirectoryType(
  FpcLogFileDirectoryType DirectoryType
);

Parameters

pDirectoryType
Pointer to a value from the FpcLogFileDirectoryType enumerated type that is set on return to either fpcFullPath, which indicates that full path is specified for the log file directory, or fpcRelativePath, which indicates that the log files are stored in the ISALogs directory under the ISA Server installation directory.
DirectoryType

Value from the FpcLogFileDirectoryType enumerated type. The value can be either fpcFullPath, which indicates that the directory of the log files is given as a full path, or fpcRelativePath, which indicates that the directory of the log files is relative to the ISA Server installation directory.

If this value is set to fpcRelativePath, the path set in the LogFileDirectory property is ignored.

Return Values

These property methods return S_OK if the call is successful; otherwise, they return an error code.

Remarks

This property is read/write.

[Visual Basic]

The LogFileDirectoryType property gets or sets a value from the FpcLogFileDirectoryType enumerated type that indicates the type of path specified for the log files.

Property LogFileDirectoryType As FpcLogFileDirectoryType

Property Value

Value from the FpcLogFileDirectoryType enumerated type. The value can be either fpcFullPath, which indicates that the full path is specified for the log file directory, or fpcRelativePath, which indicates that the log files are stored in the ISALogs directory under the ISA Server installation directory.

If this value is set to fpcRelativePath, the path set in the LogFileDirectory property is ignored.

Remarks

This property is read/write.

Requirements

Server: Requires Windows Server 2003 or Windows 2000.
Version: Requires Internet Security and Acceleration Server 2004.
Header: Declared in Msfpccom.idl.
Library: Use Microsoft Internet Security and Acceleration Server 2004 Administration Library.

See Also

FPCLog