Changeset 4414 for trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginInfrastructureEventArgs.cs
- Timestamp:
- 09/16/10 14:49:34 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginInfrastructureEventArgs.cs
r4068 r4414 24 24 namespace HeuristicLab.PluginInfrastructure.Manager { 25 25 [Serializable] 26 internalsealed class PluginInfrastructureEventArgs : EventArgs {27 internalobject Entity { get; private set; }28 internalPluginInfrastructureEventArgs(object entity) {26 public sealed class PluginInfrastructureEventArgs : EventArgs { 27 public object Entity { get; private set; } 28 public PluginInfrastructureEventArgs(object entity) { 29 29 this.Entity = entity; 30 30 } 31 31 32 32 private static PluginInfrastructureEventArgs emptyArgs = new PluginInfrastructureEventArgs(string.Empty); 33 internalnew static PluginInfrastructureEventArgs Empty {33 public new static PluginInfrastructureEventArgs Empty { 34 34 get { return emptyArgs; } 35 35 }
Note: See TracChangeset
for help on using the changeset viewer.