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

XmlAttributeEventHandler.cs « System.Xml.Serialization « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35a0f2d54746424347148fda17113acf6d2000ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// XmlAttributeEventHandler.cs: 
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//
// (C) 2002 Ximian, Inc.
//
using System;

namespace System.Xml.Serialization {
	
	[Serializable]
	public delegate void XmlAttributeEventHandler (object sender, XmlAttributeEventArgs e);
}