[Mono-list] Submissions

Chris Hynes chrish@assistedsolutions.com
Wed, 3 Oct 2001 08:19:20 -0400


This is a multi-part message in MIME format.

------=_NextPart_000_0019_01C14BE4.19C78F60
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

Here are two classes in the System namespace. How do I submit them?

Chris
------=_NextPart_000_0019_01C14BE4.19C78F60
Content-Type: application/octet-stream;
	name="AssemblyLoadEventArgs.cs"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename="AssemblyLoadEventArgs.cs"

//
// System.AssemblyLoadEventArgs.cs 
//
// Author:
//   Chris Hynes (chrish@assistedsolutions.com)
//
// (C) 2001 Chris Hynes
//

using System;
using System.Reflection;

namespace System 
{
	public class AssemblyLoadEventArgs: EventArgs
	{
		protected Assembly loadedAssembly;

		public AssemblyLoadEventArgs(Assembly loadedAssembly)
		{
			this.loadedAssembly = loadedAssembly;
		}

		public Assembly LoadedAssembly
		{
			get 
			{
				return loadedAssembly;
			}
		}
	}
}


------=_NextPart_000_0019_01C14BE4.19C78F60
Content-Type: application/octet-stream;
	name="UnhandledExceptionEventArgs.cs"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename="UnhandledExceptionEventArgs.cs"

//
// System.UnhandledExceptionEventArgs.cs 
//
// Author:
//   Chris Hynes (chrish@assistedsolutions.com)
//
// (C) 2001 Chris Hynes
//

using System;
using System.Reflection;

namespace System 
{
	public class UnhandledExceptionEventArgs: EventArgs
	{
		protected object exception;
		protected bool isTerminating;

		public UnhandledExceptionEventArgs(object exception, bool isTerminating)
		{
			this.exception = exception;
			this.isTerminating = isTerminating;
		}

		public object ExceptionObject
		{
			get 
			{
				return exception;
			}
		}

		public bool IsTerminating
		{
			get
			{
				return isTerminating;
			}
		}
	}
}
------=_NextPart_000_0019_01C14BE4.19C78F60--