Sets the map that is used for ${variable} substitution. The map key values cannot have any of the characters ${} in them. When ${key} is found in any tag, it is replaced with the matching value. The value can be a string, number (int, float, etc), or datetime. The map is copied so on return changes to the passed in map will not affect the data source.
Syntax
Visual Basic (Declaration) | |
---|
Public Sub setParameters( _
ByVal map As java.util.Map _
) |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As XPathDataSource
Dim map As java.util.Map
instance.setParameters(map) |
C# | |
---|
public void setParameters(
java.util.Map map
) |
Managed Extensions for C++ | |
---|
public: void setParameters(
java.util.Map* map
) |
C++/CLI | |
---|
public:
void setParameters(
java.util.Map^ map
) |
Parameters
- map
- The map of string/value pairs.
Requirements
Platforms: Windows 10, Windows NT, Windows Server
See Also