Select from following answers:- TestOperation.Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Normal,
- TestOperation.Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.DataBind,
- TestOperation.Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Send,new OneArgDelegate(UpdateUserInterface), report);
- TestOperation.Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Render,
- All Above
DispatcherPriority Enumeration has many members out of which the Send member whose enumeration value is 10 has the highest priority.In this
case operations are processed before other asynchronous operations.
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator