Beispiel #1
0
 public ConfigurationEventArgs(ConfigurationEventType type, string name, object value, bool beforeOperation)
 {
     Type            = type;
     Name            = name;
     Value           = value;
     BeforeOperation = beforeOperation;
 }
 public ConfigurationEventArgs(ConfigurationEventType type, string name, object value, bool beforeOperation)
 {
     Type = type;
     Name = name;
     Value = value;
     BeforeOperation = beforeOperation;
 }
Beispiel #3
0
 public ConfigurationEventArgs(ConfigurationEventType type, string name, bool beforeOperation)
     : this(type, name, null, beforeOperation)
 {
 }
 public ConfigurationEventArgs(ConfigurationEventType type, string name, bool beforeOperation)
     : this(type, name, null, beforeOperation)
 {
 }