Determines if the specified value is a valid XML encoding name.
Source position: laz2_xmlutils.pas line 37
function IsValidXmlEncoding( |
const Value: TXMLUtilString |
):Boolean; |
Value |
|
Value examined for a valid encoding identifier. |
True the value satisfied the Name production in the XML specification.
IsValidXmlEncoding is a Boolean function used to determine if the value specified in Value is a valid XML encoding name. The encoding name is used in the XML declaration for a document. For instance:
<?xml encoding='UTF-8'?>
or:
<?xml encoding='EUC-JP'?>
| Version 4.4 | Generated 2025-11-08 | Home |