39 references to DependencyPropertyValues
System.Workflow.ComponentModel (39)
AuthoringOM\Activity.cs (16)
717
if (this.
DependencyPropertyValues
.ContainsKey(dependencyProp))
719
handlers = this.
DependencyPropertyValues
[dependencyProp] as IList;
724
this.
DependencyPropertyValues
[dependencyProp] = handlers;
730
if (this.
DependencyPropertyValues
.ContainsKey(dependencyProp))
732
IList handlers = this.
DependencyPropertyValues
[dependencyProp] as IList;
737
this.
DependencyPropertyValues
.Remove(dependencyProp);
744
if (this.
DependencyPropertyValues
.ContainsKey(dependencyProp))
745
handlers = this.
DependencyPropertyValues
[dependencyProp] as IList;
767
if (this.
DependencyPropertyValues
.ContainsKey(dependencyProp))
769
handlers = this.
DependencyPropertyValues
[dependencyProp] as IList;
774
this.
DependencyPropertyValues
[dependencyProp] = handlers;
795
if (this.
DependencyPropertyValues
.ContainsKey(dependencyProp))
797
IList handlers = this.
DependencyPropertyValues
[dependencyProp] as IList;
802
this.
DependencyPropertyValues
.Remove(dependencyProp);
947
DependencyProperty[] propertyClone = new DependencyProperty[this.
DependencyPropertyValues
.Keys.Count];
948
this.
DependencyPropertyValues
.Keys.CopyTo(propertyClone, 0);
AuthoringOM\DependencyObject.cs (21)
135
if (this.
DependencyPropertyValues
.ContainsKey(dependencyProperty))
136
this.
DependencyPropertyValues
.Remove(dependencyProperty);
175
if (!this.
DependencyPropertyValues
.TryGetValue(dependencyProperty, out value))
218
properties = this.
DependencyPropertyValues
;
279
properties = this.
DependencyPropertyValues
;
318
removed |= this.
DependencyPropertyValues
.Remove(dependencyProperty);
353
IDictionary<DependencyProperty, object> properties = this.
DependencyPropertyValues
;
387
IDictionary<DependencyProperty, object> properties = this.
DependencyPropertyValues
;
406
IDictionary<DependencyProperty, object> properties = this.
DependencyPropertyValues
;
434
return (!this.
DependencyPropertyValues
.ContainsKey(dependencyProperty) &&
459
this.
DependencyPropertyValues
[ParentDependencyObjectProperty] = parentDependencyObject;
468
this.
DependencyPropertyValues
[dependencyProperty] = propValue;
475
this.
DependencyPropertyValues
[dependencyProperty] = propValue;
490
this.
DependencyPropertyValues
[ParentDependencyObjectProperty] = parentDependencyObject;
499
this.
DependencyPropertyValues
[dependencyProperty] = propValue;
506
this.
DependencyPropertyValues
[dependencyProperty] = propValue;
532
foreach (KeyValuePair<DependencyProperty, object> keyValuePair in this.
DependencyPropertyValues
)
534
if (keyValuePair.Key != ParentDependencyObjectProperty && originalObject.
DependencyPropertyValues
.ContainsKey(keyValuePair.Key))
536
object originalPropValue = originalObject.
DependencyPropertyValues
[keyValuePair.Key];
567
if (this.
DependencyPropertyValues
.ContainsKey(dependencyEvent))
568
properties = this.
DependencyPropertyValues
;
AuthoringOM\Serializer\DependencyObjectCodeDomSerializer.cs (1)
70
foreach (DependencyProperty dp in dependencyObject.
DependencyPropertyValues
.Keys)
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (1)
1522
foreach (DependencyProperty dependencyProperty in dependencyObject.
DependencyPropertyValues
.Keys)