Ejemplo n.º 1
0
 /// <summary>
 /// Registered with the event against method
 /// </summary>
 /// <param name="method">Method name</param>
 public void UnRegister(UpdateInfoEventHandler method)
 {
     UpdateInfo -= method;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Registered with the event a unique method
 /// </summary>
 /// <param name="method">Method name</param>
 public void RegisterOnly(UpdateInfoEventHandler method)
 {
     UpdateInfo = method;
 }