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

BeginEventHandler.cs « System.Web « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2bd1ac27825f281f45a96733f9d293d8d863a53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// System.Web.BeginEventHandler.cs
//
// Author:
//   Bob Smith <bob@thestuff.net>
//
// (C) Bob Smith
//

namespace System.Web
{
        public delegate IAsyncResult BeginEventHandler(object sender,
                                                       EventArgs e,
                                                       AsyncCallback cb,
                                                       object extraData);
}