Microsoft Internet Security and Acceleration Server 2000 |
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.
[ Days = ] FPCScheduledContentDownloadConfig.ScheduleDays
HRESULT ScheduleDays( FpcDaysOfWeek *pDays );
The property is read-only.
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.
FPCScheduledContentDownloadConfig