DynamicKeywordNameMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the name modes for a dynamic keyword. A name expression may be required, optional or not permitted.
public enum class DynamicKeywordNameMode
public enum DynamicKeywordNameMode
type DynamicKeywordNameMode =
Public Enum DynamicKeywordNameMode
- Inheritance
-
DynamicKeywordNameMode
Fields
Name | Value | Description |
---|---|---|
NoName | 0 | This keyword does not take a name value. |
SimpleNameRequired | 1 | Name must be present and simple non-empty bare word. |
NameRequired | 2 | Name must be present but can also be an expression. |
SimpleOptionalName | 3 | Name may be optionally present, but if it is present, it must be a non-empty bare word. |
OptionalName | 4 | Name may be optionally present, expression or bare word. |