Exemplo n.º 1
0
 /// <summary>
 /// Called when [call].
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The <see cref="Uniframework.Switch.CallEventArgs"/> instance containing the event data.</param>
 protected virtual void OnCall(object sender, CallEventArgs e)
 {
     if (scriptLoaders.ContainsKey(ChannelEventHandlerName.Call))
     {
         RunScripts(ChannelEventHandlerName.Call);
     }
     else
     if (this.Call != null)
     {
         this.Call(sender, e);
     }
 }
Exemplo n.º 2
0
 public new void OnCall(object sender, CallEventArgs e)
 {
     base.OnCall(sender, e);
 }
Exemplo n.º 3
0
 public new void OnCall(object sender, CallEventArgs e)
 {
     base.OnCall(sender, e);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Called when [call].
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The <see cref="Uniframework.Switch.CallEventArgs"/> instance containing the event data.</param>
 protected virtual void OnCall(object sender, CallEventArgs e)
 {
     if (scriptLoaders.ContainsKey(ChannelEventHandlerName.Call))
     {
         RunScripts(ChannelEventHandlerName.Call);
     }
     else
         if (this.Call != null)
         {
             this.Call(sender, e);
         }
 }