Пример #1
0
 protected void OnWarning(StringEventArgs e)
 {
     if(this.Warning != null)
         this.Warning(this, e);
 }
Пример #2
0
 protected void Converter_Warning(
         object sender,
         StringEventArgs e)
 {
     if(this.Warning != null)
         this.Warning(sender, e);
 }
Пример #3
0
 protected void OnError(StringEventArgs e)
 {
     if(this.Error != null)
         this.Error(this, e);
 }
Пример #4
0
 protected void Converter_Error(object sender, StringEventArgs e)
 {
     if(this.Error != null)
         this.Error(sender, e);
 }