ForcedResync Property
Enables (true
) or disables (false
) resynchronization during loading through URLMON. This property is useful for optimizing cache utility in high-load server applications. To force resynchronization, set this property to true
. Otherwise, set it to false
. The default value of this property is true
.
[JScript]
JScript Syntax
domObj.setProperty(strProp, vBool); vBool = domObj.getProperty(strProp);
[Visual Basic]
Visual Basic Syntax
domObj.setProperty(strProp, vBool) vBool = domObj.getProperty(strProp)
[C/C++]
C/C++ Syntax
HRESULT setProperty(BSTR strProp, VARIANT vBool); HRESULT getProperty(BSTR strProp, VARIANT* vBool);
Value
- strProp
- A BSTR string whose value is "ForcedResync".
- vBool
- A VARIANT_BOOL value of
true
orfalse
. The default value istrue
.
Applies To
Component: MSXML 3.0 SP3, MSXML 4.0 SP1, MSXML 5.0 and later
Interface: IXMLDOMDocument2
Method: setProperty | getProperty