 | CAEXPathBuilderNormalizePath Method |
Normalization of a CAEXPath. A normalized path is freed of all path part delimiters '[' and ']'
in case that there is no path part name containing a path separator character like '/'.
Namespace: Aml.Engine.CAEX.ExtensionsAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic static string NormalizePath(
string path,
out bool isNormalized,
CAEXDocumentCAEXSchema schema
)
Public Shared Function NormalizePath (
path As String,
<OutAttribute> ByRef isNormalized As Boolean,
schema As CAEXDocumentCAEXSchema
) As String
public:
static String^ NormalizePath(
String^ path,
[OutAttribute] bool% isNormalized,
CAEXDocumentCAEXSchema schema
)
Parameters
- path String
- The path.
- isNormalized Boolean
- if set to true [is normalized].
- schema CAEXDocumentCAEXSchema
- A CAEX schema version.
Return Value
String
the normalized path
Remarks
Since CAEX Version 3.0 a '.' and ':' is no longer used as a path separator. Names, containing
such a character will be normalized in Version 3.0 also.
See Also