Click or drag to resize
MvEndPointLoadViewSpec Method
Loads a dynamic view-type specification to the server.

Namespace: RW.Server.Component
Assembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax
public virtual void LoadViewSpec(
	string fileOrString,
	bool isString = true,
	bool useXmlParser = false,
	bool isSync = false
)

Parameters

fileOrString
Type: SystemString
View description or file name of the view description.
isString (Optional)
Type: SystemBoolean
If false, the first argument will be considered as a file name and the sent view description will be the content of the file.
useXmlParser (Optional)
Type: SystemBoolean
If true, the XML parser will be used to load the view.
isSync (Optional)
Type: SystemBoolean
If true, the call be be synchronous.
Remarks
This loading is done either from a string (if the isString parameter is set to true) or from the name of the view specification file (if isString is set to false).
See Also