bugDotGNU Portable.NET - Bugs: bug #14146, ...

 
 

You are not allowed to post comments on this tracker with your current authentication level.

bug #14146: System.Windows.Forms.ThreadExceptionEventHandler and ThreadExceptionEventArgs.cs are invalid

Submitter:  None
Submitted:  Tue 16 Aug 2005 02:42:45 PM UTC
   
 
Category:  None Severity:  3 - Normal
Item Group:  None Status:  Fixed
Privacy:  Public Assigned to:  None
Open/Closed:  Closed

Wed 17 Aug 2005 07:05:32 AM UTC, comment #1: 

Deleted the errant classes.

Gopal.V <t3rmin4t0r>
Group administrator
Tue 16 Aug 2005 02:42:45 PM UTC, original submission:  

System.Windows.Forms.ThreadExceptionEventArgs.cs and System.Windows.Forms.ThreadExceptionEventHandler.cs should be deleted. These classes do not exist in .NET Their functionality  is in System.Threading.

Because of this we cant compile this simple program handling  Application.ThreadException.

using System.Windows.Forms;

class Application_ThreadException_Test
{
 static void Main()
 {
  Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
 }
 
 static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
 {
  MessageBox.Show(e.Exception.Message);
 }
}


Anonymous

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attached Files
file #3369:  Application_ThreadException_Test.cs added by None (358B - text/plain - Compile with cscc -winforms Application_ThreadException_Test.cs)

 

Depends on the following items: None found

Items that depend on this one: None found

 

CC list is empty

 

There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

 

Follow 3 latest changes.

Date Changed by Updated Field Previous Value => Replaced by
2005-08-17 t3rmin4t0r Open/ClosedOpen Closed
2005-08-17 t3rmin4t0r StatusNone Fixed
2005-08-16 None Attached File- Added Application_ThreadException_Test.cs, #2830

Back to the top

Powered by Savane 3.14-0b36.
Corresponding source code