Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Replaces the current value of all xml nodes containing that value with a new value.
Syntax
private void replaceXmlDocumentValue(
XmlDocument xmlDoc,
XmlNamespaceManager nsmgr,
str oldValue,
str newValue,
[boolean isExactMatch])
Run On
Client
Parameters
- xmlDoc
Type: XmlDocument Class
The XmlDocument object to modify.
- nsmgr
Type: XmlNamespaceManager Class
The XmlNamespaceManager object to use.
- oldValue
Type: str
The old value to replace.
- newValue
Type: str
The new value.
- isExactMatch
Type: boolean
A value indicating if the string in the oldValue parameter is an exact match or not; optional. Default value is true. If false, then the value in the oldValue parameter is used as a substing search.