 | CAEXPathBuilderPathPartObjectNames Method |
Returns the Path Part object names of a CAEX Path. If any object name contains
a path separator character the path part is enclosed in square brackets '[',
']'. The square brackets are removed from the object name in the returned
result (default behaviour). If keepPathPartBrackets is set to true, square
brackets are not removed.
Namespace: Aml.Engine.CAEX.ExtensionsAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic static IEnumerable<string> PathPartObjectNames(
string path,
CAEXDocumentCAEXSchema schema,
bool keepPathPartBrackets = false
)
Public Shared Function PathPartObjectNames (
path As String,
schema As CAEXDocumentCAEXSchema,
Optional keepPathPartBrackets As Boolean = false
) As IEnumerable(Of String)
public:
static IEnumerable<String^>^ PathPartObjectNames(
String^ path,
CAEXDocumentCAEXSchema schema,
bool keepPathPartBrackets = false
)
Parameters
- path String
- The full CAEX path.
- schema CAEXDocumentCAEXSchema
- The CAEX schema version.
- keepPathPartBrackets Boolean (Optional)
- false (default); if true, object names may be enclosed in square
brackets
Return Value
IEnumerableString
IEnumerable<System.String>.
See Also