Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AssemblyLoadEventArgs.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dec3463c6aab087add2afa33de89eed22ff1a3e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// System.AssemblyLoadEventArgs.cs 
//
// Author:
//   Chris Hynes (chrish@assistedsolutions.com)
//
// (C) 2001 Chris Hynes
//

using System;
using System.Reflection;

namespace System 
{
	public class AssemblyLoadEventArgs: EventArgs
	{
		private Assembly m_loadedAssembly;

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

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