Microsoft Internet Security and Acceleration Server 2004 SDK

LogFieldSelection Property of IFPCLog[C++]

FPCLog.LogFieldSelection [Visual Basic]

[C++]

The LogFieldSelection property gets or sets a bitmask in which each bit specifies whether a particular log field is selected for logging. The first bit (0) refers to the first field of the log object, the second bit refers to the second field, and so on. Tables of the fields that can be included in ISA Server logs and the position of each field are provided in Log Fields.

HRESULT get_LogFieldSelection(
  long* plSelection
);

HRESULT put_LogFieldSelection(
  long lSelection
);

Parameters

plSelection
Pointer to a 32-bit integer that is set on return to a bitmask specifying the log fields that are selected for logging.
lSelection
Bitmask that specifies the fields that are selected for logging.

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 LogFieldSelection property gets or sets a bitmask in which each bit specifies whether a particular log field is selected for logging. The first bit (0) refers to the first field of the log object, the second bit refers to the second field, and so on. Tables of the fields that can be included in ISA Server logs and the position of each field are provided in Log Fields.

Property LogFieldSelection As Long

Property Value

Bitmask that specifies the log fields that are selected for logging.

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