Lines Matching refs:xml
20 fastConvertToJSObject(xml: string, options?: ConvertOptions) : Object
36 | xml | string | Yes | XML text to convert. If the XML text contain…
52 | 10200002 | Invalid xml string. |
58 let xml =
59 '<?xml version="1.0" encoding="utf-8"?>' +
72 let result = JSON.stringify(conv.fastConvertToJSObject(xml, options));
83 convertToJSObject(xml: string, options?: ConvertOptions) : Object
99 | xml | string | Yes | XML text to convert. If the XML text contain…
115 | 10200002 | Invalid xml string. |
121 let xml =
122 '<?xml version="1.0" encoding="utf-8"?>' +
136 let result = JSON.stringify(conv.convertToJSObject(xml, options));
147 convert(xml: string, options?: ConvertOptions) : Object
161 | xml | string | Yes | XML text to convert.|
173 let xml =
174 '<?xml version="1.0" encoding="utf-8"?>' +
186 let result = JSON.stringify(conv.convert(xml, options));