Enum XamlInvokerOptions
Options for member and type invokers.
Namespace: System.Xaml
Assembly: OpenSilver.Xaml.dll
Syntax
[Flags]
public enum XamlInvokerOptions
Fields
Name | Description |
---|---|
Compile | Compile an expression tree to get/set/add values, which has higher startup cost but is an order of magnatude faster than reflection. |
DeferCompile | Use reflection while the expression tree is compiled in a background thread. |
None | Use reflection, which is much slower than compiled code on each call. |