ENUMALIASCONFLICTBEHAVIOR
List of ENUMALIASCONFLICTBEHAVIOR
| Name | Description |
| Fail | Terminates processing when a duplicate alias is detected. An alias may not resolve to more than one feature. |
| Remove_Duplicate | Ignores the conflicting alias and prevents it from being added. The existing alias binding is preserved. |
Examples
Conflicting aliases are discarded and the existing alias binding is preserved.
RUNTIME { ALIAS_CONFLICT = Remove_Duplicate; }
Terminates processing when a duplicate alias is encountered during binding.
RUNTIME { ALIAS_CONFLICT = Fail; }