Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.36 KB

File metadata and controls

44 lines (31 loc) · 1.36 KB

UIExtensionBase.Subscribe<TEvent> method (1 of 2)

Subscribe to a Studio Pro event.

protected IEventSubscription Subscribe<TEvent>(Action onEvent)
    where TEvent : IEvent
parameter description
TEvent The type of event to subscribe to.
onEvent The action to execute when the event occurs.

Exceptions

exception condition
ArgumentNullException If the action passed is

See Also


UIExtensionBase.Subscribe<TEvent> method (2 of 2)

protected IEventSubscription Subscribe<TEvent>(Action<TEvent> onEvent)
    where TEvent : IEvent

See Also