public static SubscriptionToken Subscribe( Func<BeforeSketchCompletedEventArgs,Task> func, bool keepSubscriberAlive )
Public Shared Function Subscribe( _ ByVal func As Func(Of BeforeSketchCompletedEventArgs,Task), _ Optional ByVal keepSubscriberAlive As Boolean _ ) As SubscriptionToken
Parameters
- func
- A delegate that is executed when the BeforeSketchCompletedEvent is published.
- keepSubscriberAlive
- (optional) The type of reference used to maintain the delegate. false is a weak reference, true is a strong reference. (default value = false)
Return Value
A token that uniquely identifies the added subscription, and may subsequently be used with Unsubscribe.