Esempio n. 1
0
 protected void OnWarning(StringEventArgs e)
 {
     if(this.Warning != null)
         this.Warning(this, e);
 }
Esempio n. 2
0
 protected void Converter_Warning(
         object sender,
         StringEventArgs e)
 {
     if(this.Warning != null)
         this.Warning(sender, e);
 }
Esempio n. 3
0
 protected void OnError(StringEventArgs e)
 {
     if(this.Error != null)
         this.Error(this, e);
 }
Esempio n. 4
0
 protected void Converter_Error(object sender, StringEventArgs e)
 {
     if(this.Error != null)
         this.Error(sender, e);
 }