* IManagedInstaller.cs: fixed signature
[mono.git] / mcs / class / System.Configuration.Install / System.Configuration.Install / InstallEventArgs.cs
1 // System.Configuration.Install.InstallEventArgs.cs
2 //
3 // Author: 
4 //      Alejandro Sánchez Acosta  <raciel@es.gnu.org>
5 //
6 // (C) Alejandro Sánchez Acosta
7 // 
8
9 using System.Collections;
10
11 namespace System.Configuration.Install
12 {
13         public class InstallEventArgs : EventArgs
14         {
15                 private IDictionary savedstate;
16                 
17                 public InstallEventArgs() {
18                 }
19
20                 public InstallEventArgs (IDictionary savedState) {
21                         this.savedstate = savedState;
22                 }
23                 
24                 public IDictionary SavedState {
25                         get {
26                                 return savedstate;      
27                         }
28                 }               
29         }
30 }