2 instantiations of GrantedLock
System.Workflow.ComponentModel (2)
AuthoringOM\ActivityExecutionContext.cs (2)
433grantedLocks[handle] = new GrantedLock(activity); 756GrantedLock clonedGrantedLock = new GrantedLock(this.holder);
12 references to GrantedLock
System.Workflow.ComponentModel (12)
AuthoringOM\ActivityExecutionContext.cs (12)
45internal static readonly DependencyProperty GrantedLocksProperty = DependencyProperty.RegisterAttached("GrantedLocks", typeof(Dictionary<string, GrantedLock>), typeof(ActivityExecutionContext)); 46internal static readonly DependencyProperty CachedGrantedLocksProperty = DependencyProperty.RegisterAttached("CachedGrantedLocks", typeof(Dictionary<string, GrantedLock>), typeof(ActivityExecutionContext), new PropertyMetadata(DependencyPropertyOptions.NonSerialized)); 422Dictionary<string, GrantedLock> grantedLocks = (Dictionary<string, GrantedLock>)parent.GetValue(GrantedLocksProperty); 425grantedLocks = new Dictionary<string, GrantedLock>(); 481Dictionary<string, GrantedLock> grantedLocks = (Dictionary<string, GrantedLock>)parent.GetValue(GrantedLocksProperty); 487Dictionary<string, GrantedLock> cachedGrantedLocks = new Dictionary<string, GrantedLock>(); 490foreach (KeyValuePair<string, GrantedLock> grantedLockEntry in grantedLocks) 491cachedGrantedLocks.Add(grantedLockEntry.Key, (GrantedLock)grantedLockEntry.Value.Clone()); 756GrantedLock clonedGrantedLock = new GrantedLock(this.holder);