RSML.Parser.ReadyToGoParser Static Class¶
Ready-to-go parsers that follow the most common RSML standards and are recommended for beginners and for greater compatibility.
Hierarchy¶
flowchart TB
ReadyToGoParser --> System.Object
Static Methods¶
ReadyToGoParser contains 3 static (non-factory) methods.
CreateMFRoadLike(System.String rsmlContent)¶
Creates a new ready-to-go RSML following the roadlike Language Standard.
Parameters¶
System.String rsmlContent-
The RSML document, as a
System.String.
Returns¶
RSParser : The RSML parser.
CreateNew(System.String rsmlContent)¶
Creates a new ready-to-go RSML parser following the official-25 Language Standard.
Parameters¶
System.String rsmlContent-
The RSML document, as a
System.String.
Returns¶
RSParser : The RSML parser.
CreateNewFromFilepath(System.String filepath)¶
Creates a new ready-to-go RSML parser from a file, following the official-25 Language Standard.
Parameters¶
System.String filepath-
The path to the file.
Returns¶
RSParser-
The RSML parser.
null-
The specified file does not exist.