SeparateMonitor
Indicates whether the resource requires its own Resource Monitor. The following table summarizes the attributes of the SeparateMonitor property.
Attribute | Value |
---|---|
Data type | DWORD |
Access | Read/write |
Structure | CLUSPROP_DWORD |
Minimum | FALSE |
Maximum | TRUE |
Default | FALSE |
Remarks
The data value for the SeparateMonitor property can be set to TRUE or FALSE. To use a debugger with a resource DLL, the resource's SeparateMonitor property must be set to TRUE.
A change to the SeparateMonitor property does not take effect immediately unless the resource is offline at the time of the change. If the resource is online, the change takes effect after the resource is taken offline and brought back online.
Examples
The property value portion of a property list entry for SeparateMonitor can be set with the following example code:
DWORD SeparateMonitorData = TRUE;
CLUSPROP_DWORD SeparateMonitorValue;
SeparateMonitorValue.Syntax.dw = CLUSPROP_SYNTAX_LIST_VALUE_DWORD;
SeparateMonitorValue.cbLength = sizeof(DWORD);
SeparateMonitorValue.dw = SeparateMonitorData;
Requirements
Minimum supported client |
None supported |
Minimum supported server |
Windows Server 2008 Enterprise, Windows Server 2008 Datacenter |