* Page.cs: Set the cache's duration.
[mono.git] / mcs / class / System.Web / System.Web.UI / IPostBackDataHandler.cs
1 //
2 // System.Web.UI.IPostBackDataHandler.cs
3 //
4 // Author:
5 //   Bob Smith <bob@thestuff.net>
6 //
7 // (C) Bob Smith
8 //
9
10 using System;
11 using System.Web;
12 using System.Collections.Specialized;
13
14 namespace System.Web.UI
15 {
16         public interface IPostBackDataHandler
17         {
18                 bool LoadPostData(string postDataKey, NameValueCollection postCollection);
19                 void RaisePostDataChangedEvent();
20         }
21 }