Cross Thread Exception Raising : Exception « Windows Presentation Foundation « C# / C Sharp






Cross Thread Exception Raising

  
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  x:Class="WpfApplication1.SecondaryUiThreadWindow"
  Height="200" Width="400" Closed="SecondaryUiThreadWindow_Closed">
  <Button Click="r">Raise an Exception on the Secondary UI Thread</Button>

</Window>
//File:Window.xaml.cs
using System; 
using System.Threading;
using System.Windows; 
using System.Windows.Threading;

namespace WpfApplication1
{
    public partial class SecondaryUiThreadWindow : Window
    {
        public SecondaryUiThreadWindow()
        {
            InitializeComponent();

            this.Title = Thread.CurrentThread.ManagedThreadId+"";
        }
        void r(object sender, RoutedEventArgs e)
        {
            throw new Exception(Dispatcher.CurrentDispatcher.Thread.ManagedThreadId+"");
        }
        void SecondaryUiThreadWindow_Closed(object sender, EventArgs e)
        {
            Dispatcher.CurrentDispatcher.InvokeShutdown();
        }
    }
}

   
    
  








Related examples in the same category

1.Cross Thread Exception Raising WorkerThread
2.Check Exception type for DispatcherUnhandledException
3.Raise exception from button click eventRaise exception from button click event
4.Security ExceptionSecurity Exception
5.Throw Handled ExceptionThrow Handled Exception
6.Throw Unhandled ExceptionThrow Unhandled Exception
7.Throw Unhandled Exception From ThreadThrow Unhandled Exception From Thread
8.Customize UpdateSourceExceptionFilterCustomize UpdateSourceExceptionFilter
9.Manage unhandled exceptions that are thrown on secondary worker threads.Manage unhandled exceptions that are thrown on secondary worker threads.
10.Throw Exception from button click actionThrow Exception from button click action
11.Catch XamlParseExceptionCatch XamlParseException
12.Manage unhandled exceptions that are thrown on secondary user interface (UI) threads.