ParameterTypeSemantics 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.
The enumeration defining the type semantics used to resolve function overloads. These flags are defined in the provider manifest per function definition.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1717:OnlyFlagsEnumsShouldHavePluralNames")]
public enum ParameterTypeSemantics
type ParameterTypeSemantics =
Public Enum ParameterTypeSemantics
- Inheritance
-
ParameterTypeSemantics
- Attributes
Fields
| Name | Value | Description |
|---|---|---|
| AllowImplicitConversion | 0 | Allow Implicit Conversion between given and formal argument types (default). |
| AllowImplicitPromotion | 1 | Allow Type Promotion between given and formal argument types. |
| ExactMatchOnly | 2 | Use strict Equivalence only. |