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