~ubuntu-branches/ubuntu/karmic/moon/karmic

« back to all changes in this revision

Viewing changes to class/System.Windows/System.Windows/ApplicationUnhandledExceptionEventArgs.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-14 12:01:08 UTC
  • Revision ID: james.westby@ubuntu.com-20090214120108-06539vb25vhbd8bn
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// System.Windows.ApplicationUnhandledExceptionEventArgs delegate
 
3
//
 
4
// <mono@novell.com>
 
5
//
 
6
// Copyright (C) 2008 Novell, Inc (http://www.novell.com)
 
7
//
 
8
// Permission is hereby granted, free of charge, to any person obtaining
 
9
// a copy of this software and associated documentation files (the
 
10
// "Software"), to deal in the Software without restriction, including
 
11
// without limitation the rights to use, copy, modify, merge, publish,
 
12
// distribute, sublicense, and/or sell copies of the Software, and to
 
13
// permit persons to whom the Software is furnished to do so, subject to
 
14
// the following conditions:
 
15
//
 
16
// The above copyright notice and this permission notice shall be
 
17
// included in all copies or substantial portions of the Software.
 
18
//
 
19
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
20
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
21
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
22
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
23
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
24
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
25
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
26
//
 
27
using System;
 
28
using System.Windows;
 
29
using System.Collections.Generic;
 
30
 
 
31
namespace System.Windows {
 
32
        public sealed class ApplicationUnhandledExceptionEventArgs : EventArgs {
 
33
                internal Exception ex;
 
34
                bool handled;
 
35
                
 
36
                public ApplicationUnhandledExceptionEventArgs (Exception ex, bool handled)
 
37
                {
 
38
                        this.ex = ex;
 
39
                        this.handled = handled;
 
40
                }
 
41
                
 
42
                public Exception ExceptionObject {
 
43
                        get { return ex; }
 
44
                        set { ex = value; }
 
45
                }
 
46
 
 
47
                public bool Handled {
 
48
                        get { return handled; }
 
49
                        set { handled = value; }
 
50
                }
 
51
        }
 
52
}