C# Class BoC.EventAggregator.BaseEvent

Show file Open project: csteeg/BoC

Public Methods

Method Description
Contains ( SubscriptionToken token ) : bool

Determines whether [contains] [the specified token].

Publish ( ) : void

Publishes the specified arguments.

Unsubscribe ( SubscriptionToken token ) : void

Unsubscribes the specified token.

Protected Methods

Method Description
Subscribe ( IEventSubscription eventSubscription ) : SubscriptionToken

Subscribes the specified event subscription.

Private Methods

Method Description
PruneAndReturnStrategies ( ) : List>

Prunes the and return strategies.

Method Details

Contains() public method

Determines whether [contains] [the specified token].
public Contains ( SubscriptionToken token ) : bool
token SubscriptionToken The token.
return bool

Publish() public method

Publishes the specified arguments.
public Publish ( ) : void
return void

Subscribe() protected method

Subscribes the specified event subscription.
protected Subscribe ( IEventSubscription eventSubscription ) : SubscriptionToken
eventSubscription IEventSubscription The event subscription.
return SubscriptionToken

Unsubscribe() public method

Unsubscribes the specified token.
public Unsubscribe ( SubscriptionToken token ) : void
token SubscriptionToken The token.
return void