Пример #1
0
 public void Unregister(IOnlineComponent component)
 {
     Scheduler.Add(delegate
     {
         components.Remove(component);
     });
 }
Пример #2
0
 public void Register(IOnlineComponent component)
 {
     Scheduler.Add(delegate
     {
         components.Add(component);
         component.APIStateChanged(this, state);
     });
 }
Пример #3
0
 public void Unregister(IOnlineComponent component)
 {
     Scheduler.Add(delegate
     {
         components.Remove(component);
     });
 }
Пример #4
0
 public void Register(IOnlineComponent component)
 {
     Scheduler.Add(delegate
     {
         components.Add(component);
         component.APIStateChanged(this, state);
     });
 }
Пример #5
0
 public void Register(IOnlineComponent component)
 {
 }
Пример #6
0
 /// <summary>
 /// Register a component to receive API events.
 /// Fires <see cref="IOnlineComponent.APIStateChanged"/> once immediately to ensure a correct state.
 /// </summary>
 /// <param name="component"></param>
 public void Register(IOnlineComponent component)
 {
     Schedule(() => components.Add(component));
     component.APIStateChanged(this, state);
 }
Пример #7
0
 public void Unregister(IOnlineComponent component)
 {
     Schedule(() => components.Remove(component));
 }