What is the dispatcher priority given to the action when Dispatcher.Invoke (Action) is called?

What is the dispatcher priority given to the action when Dispatcher.Invoke (Action) is called?

I understand how Dispatcher.Invoke (Action, DispatcherPriority) works, I believe if you don't specify the DispatcherPriority parameter it will give the action the default DispatcherPriority. Am I wrong? If there is no default for this?

Thank!

+3


source to share


1 answer


You can find the reference source from Microsoft directly in the source code.

Used DispatcherPriority.Send

.



The help source is appropriate for such cases.

+5


source







All Articles