* IConfigurationAttribute: added
[mono.git] / mcs / class / System.EnterpriseServices / System.EnterpriseServices / IConfigurationAttribute.cs
1 // System.EnterpriseServices.IConfigurationAttribute.cs
2 //
3 // Author:  Gert Driesen (drieseng@users.sourceforge.net)
4 //
5 // Copyright (C) 2004 Novell, Inc.
6 //
7
8 using System.Collections;
9
10 namespace System.EnterpriseServices
11 {
12         internal interface IConfigurationAttribute
13         {
14                 bool AfterSaveChanges (Hashtable info);
15                 bool Apply (Hashtable info);
16                 bool IsValidTarget (string s);
17         }
18 }