コード例 #1
0
 public AjaxEvent(string target, HtmlEvent htmlEvent, AjaxEventHandler handler) : this(target, handler)
 {
     this.HtmlEvent = htmlEvent;
 }
コード例 #2
0
 public AjaxEvent(string target, string eventName, AjaxEventHandler handler) : this(target, handler)
 {
     this.EventName = eventName;
 }
コード例 #3
0
 //target and handler are required properties, so must be initialized always
 private AjaxEvent(string target, AjaxEventHandler handler)
 {
     this.Target = target;
     this.Event += handler;
 }