Microsoft Internet Security and Acceleration Server 2000

FPCScheduledContentDownloadConfig.ScheduleDays Property

Retrieves the days of weeks in which to perform the fetching task. Each day is represented by a bit. Sunday is bit 0, Monday is bit 1, and so forth. The value of this property is set through the SetTaskPeriod method.

VBScript Syntax[VBScript]

[ Days = ] FPCScheduledContentDownloadConfig.ScheduleDays

C++ Syntax[C++]

HRESULT ScheduleDays(
  FpcDaysOfWeek *pDays
);

Parameters

Days
Value from the FpcScheduleDays enumerated type that specifies a day. It can be ALL_WEEK, SUN, MON, and so on.

The property is read-only.

Example

The following code sets the ScheduleDays property to equal Sunday, Tuesday, and Thursday.

FPCScheduledContentDownloadConfig.ScheduleDays = 0x15

0x15 is 15 in hexadecimal (which is 21 in decimal). In binary it is 10101. The right bit represents Sunday. It is set to one, so Sunday is set. The second bit represents Monday. Its value is zero, so Monday is not set.

Applies To

FPCScheduledContentDownloadConfig