12 references to SubscribeContextCallback
System.Data (12)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\ContextItemManager.cs (3)
138public abstract void Subscribe(Type contextItemType, SubscribeContextCallback callback); 180public abstract void Unsubscribe(Type contextItemType, SubscribeContextCallback callback); 308internal SubscribeContextCallback Callback
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\EditingContext.cs (9)
157private Dictionary<Type, SubscribeContextCallback> _subscriptions; 337SubscribeContextCallback callback; 352public override void Subscribe(Type contextItemType, SubscribeContextCallback callback) 372_subscriptions = new Dictionary<Type, SubscribeContextCallback>(); 375SubscribeContextCallback existing = null; 379existing = (SubscribeContextCallback)Delegate.Combine(existing, callback); 394public override void Unsubscribe(Type contextItemType, SubscribeContextCallback callback) 414SubscribeContextCallback existing; 417existing = (SubscribeContextCallback)RemoveCallback(existing, callback);