Share via


XamlPrepareOptions Enumeration

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Options passed to the Update method to help it prepare for calls.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:  Microsoft.Xaml
Assembly:  Microsoft.Windows.Design.Markup (in Microsoft.Windows.Design.Markup.dll)

Syntax

'Declaration
<FlagsAttribute> _
Public Enumeration XamlPrepareOptions
'Usage
Dim instance As XamlPrepareOptions
[FlagsAttribute]
public enum XamlPrepareOptions
[FlagsAttribute]
public enum class XamlPrepareOptions
public enum XamlPrepareOptions

Members

Member name Description
None No options.
SemanticRanges Prepare for a call to the GetSemanticRanges method. Offset is ignored.
Completions Prepare for a call to the GetCompletions method.
Hints Prepare for a call to the GetHint method.
References Prepare for a call to the GetReferences method.
Messages Prepare for a call to the GetMessages method.
EventBindings Prepare for a call to the GetEventBindings method.
All Prepare for any call.

Remarks

Passing incorrect information to Update will cause updates to be less efficient. Passing incorrect information will cause more work to be done in the actual call instead of Update.

See Also

Reference

Microsoft.Xaml Namespace

Other Resources

WPF Designer Extensibility