ParameterTypeSemantics Enum

Definition

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

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.

Applies to