ContainerMatchingStrategyKind
Namespace: Meshmakers.Octo.MeshAdapter.Nodes.Transform
Container matching strategy kinds.
public enum ContainerMatchingStrategyKind
Inheritance Object → ValueType → Enum → ContainerMatchingStrategyKind
Implements IComparable, ISpanFormattable, IFormattable, IConvertible
Fields
| Name | Value | Description |
|---|---|---|
| ExactName | 0 | Case-sensitive exact equality on the configured attributes. |
| NormalizedName | 1 | Case-insensitive equality after lowercasing, trimming, stripping diacritics and whitespace. |
| Regex | 2 | Regex on the source attribute, comparing the captured value against the (normalized) target attribute. |
| Manual | 3 | Explicit lookup via the ContainerMatchingStrategyConfiguration.Overrides list. |