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

ResolveNameEventArgs.cs « System.ComponentModel.Design.Serialization « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 587787aa70368ce5eabc7c2c989ad4581f1a343d (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
35
36
37
// System.ComponentModel.Design.Serialization.ResolveNameEventArgs.cs
//
// Author:
// 	Alejandro Sánchez Acosta   <raciel@gnome.org>
//
// (C) Alejandro Sánchez Acosta
//

using System.Web.UI.Design;

namespace System.ComponentModel.Design.Serialization
{
	public class ResolveNameEventArgs : EventArgs
	{
		public string name;
	
		public ResolveNameEventArgs (string name) {
			this.name = name;
		}

		public string Name {
			get {
				return this.name;
			}
		}

		public object Value {
			get {
				return this.name;
			}

			set {
				name = (string) value;
			}
		}			
	}
}