1 override of ComputedValue
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelPropertyImpl.cs (1)
56
public override object
ComputedValue
56 references to ComputedValue
System.Data (56)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Annotations\AnnotationManager.cs (3)
237
this.hasAnnotation = this.ModelItem.Properties[Annotation.AnnotationTextPropertyName].
ComputedValue
!= null;
239
if (this.ModelItem.Properties[Annotation.AnnotationTextPropertyName].
ComputedValue
== null)
364
this.hasAnnotation = this.ModelItem.Properties[Annotation.AnnotationTextPropertyName].
ComputedValue
!= null;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\ExtensibilityAccessor.cs (1)
655
object value = property.
ComputedValue
;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntry.cs (1)
1212
object value = modelProperty.
ComputedValue
;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelUtilities.cs (1)
79
value = property.
ComputedValue
;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\GenericArgumentsUpdater.cs (1)
53
if (string.Equals((string)modelItem.Properties["DisplayName"].
ComputedValue
, GetActivityDefaultName(oldModelItemType), StringComparison.Ordinal))
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemExtensions.cs (3)
271
if (property.
ComputedValue
== null)
901
var displayName = displayProperty == null ? "(unknown)" : displayProperty.
ComputedValue
.ToString();
989
var displayName = displayProperty == null ? "(unknown)" : displayProperty.
ComputedValue
.ToString();
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelSearchServiceImpl.cs (10)
294
TypeNameHelper.GetDisplayName(variable.Properties[DesignTimeVariable.VariableTypeProperty].
ComputedValue
as Type, false), null));
297
variable.Properties[DesignTimeVariable.VariableNameProperty].
ComputedValue
.ToString(), null));
299
object propertyValue = variable.Properties[DesignTimeVariable.VariableDefaultProperty].
ComputedValue
;
309
string annotationText = (string)variable.Properties[Annotation.AnnotationTextPropertyName].
ComputedValue
;
371
TypeNameHelper.GetDisplayName(argument.Properties["Type"].
ComputedValue
as Type, false), null));
374
argument.Properties[DesignTimeArgument.ArgumentNameProperty].
ComputedValue
.ToString(), null));
376
IList<string> argumentValues = GetSearchableStrings(argument.Properties[DesignTimeArgument.ArgumentDefaultValueProperty].
ComputedValue
);
385
string annotationText = (string)argument.Properties[Annotation.AnnotationTextPropertyName].
ComputedValue
;
496
if (property.
ComputedValue
!= null)
523
AddEntriesForPropertyValue(property.
ComputedValue
, modelItem, property, SearchableEntryOption.Property, propertyPath);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\NamespaceSettingsHandler.cs (1)
112
object changedPropertyValue = changedProperty.
ComputedValue
;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (14)
161
return argumentCollection.GetUniqueName(ArgumentDesigner.DefaultArgumentName, (arg) => ((string)arg.Properties["Name"].
ComputedValue
));
395
this.ClearCaseInsensitiveDuplicates(arg.GetArgumentName(), (string)arg.ReflectedObject.Properties["Name"].
ComputedValue
);
407
this.CheckCaseInsensitiveDuplicates(arg.GetArgumentName(), (string)arg.ReflectedObject.Properties["Name"].
ComputedValue
);
472
Func<DesignTimeArgument, bool> checkForDuplicates = new Func<DesignTimeArgument, bool>(p => string.Equals((string)p.ReflectedObject.Properties["Name"].
ComputedValue
, newName, StringComparison.OrdinalIgnoreCase) && !object.Equals(p.GetArgumentName(), identifierName));
491
Func<DesignTimeArgument, bool> checkForOldNameDuplicates = new Func<DesignTimeArgument, bool>(p => string.Equals((string)p.ReflectedObject.Properties["Name"].
ComputedValue
, oldName, StringComparison.OrdinalIgnoreCase) && !object.Equals(p.GetArgumentName(), identifier));
704
dialog.AnnotationText = variable.Content.Properties[DesignTimeArgument.AnnotationTextProperty].
ComputedValue
as string;
779
IdentifierName = (string)argument.Properties[ArgumentNameProperty].
ComputedValue
919
return (string)this.ReflectedObject.Properties[ArgumentNameProperty].
ComputedValue
;
939
return property.
ComputedValue
;
963
this.Editor.UpdateArgumentName(this, name, (string)this.ReflectedObject.Properties[ArgumentNameProperty].
ComputedValue
);
971
Type result = (Type)this.ReflectedObject.Properties["Type"].
ComputedValue
;
995
Type argumentType = (Type)this.ReflectedObject.Properties["Type"].
ComputedValue
;
1302
argumentCollection.Any<ModelItem>(p => string.Equals(p.Properties["Name"].
ComputedValue
, name) && !ModelItem.Equals(p, this.ReflectedObject));
1411
Argument currentArgument = this.ReflectedObject.Properties[ArgumentDefaultValueProperty].
ComputedValue
as Argument;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (2)
234
if ((import != null) && !((bool)import.Properties[IsInvalidPropertyName].
ComputedValue
))
458
this.availableNamespaces = this.importsModelItem.Properties[NamespaceListPropertyDescriptor.AvailableNamespacesPropertyName].
ComputedValue
as Dictionary<string, List<string>>;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ImportedNamespaceContextItem.cs (1)
49
this.ImportedNamespaces.Add(import.Properties[NamespaceListPropertyDescriptor.NamespacePropertyName].
ComputedValue
as string);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (16)
160
Func<DesignTimeVariable, bool> checkForDuplicates = new Func<DesignTimeVariable, bool>(p => string.Equals((string)p.ReflectedObject.Properties["Name"].
ComputedValue
, newName, StringComparison.OrdinalIgnoreCase) && !object.Equals(p.GetVariableName(), identifierName));
179
Func<DesignTimeVariable, bool> checkForOldNameDuplicates = new Func<DesignTimeVariable, bool>(p => string.Equals((string)p.ReflectedObject.Properties["Name"].
ComputedValue
, oldName, StringComparison.OrdinalIgnoreCase) && !object.Equals(p.GetVariableName(), identifier));
476
this.ClearCaseInsensitiveDuplicates(arg.GetVariableName(), (string)arg.ReflectedObject.Properties["Name"].
ComputedValue
);
486
this.CheckCaseInsensitiveDuplicates(var.GetVariableName(), (string)var.ReflectedObject.Properties["Name"].
ComputedValue
);
714
dialog.AnnotationText = variable.Content.Properties[DesignTimeVariable.AnnotationTextProperty].
ComputedValue
as string;
908
return variableContainer.Any(p => string.Equals(p.Properties[DesignTimeVariable.VariableNameProperty].
ComputedValue
, variableName));
932
if (!variables.Any(p => string.Equals(p.Properties[DesignTimeVariable.VariableNameProperty].
ComputedValue
, name)))
1122
IdentifierName = (string)modelItem.Properties[VariableNameProperty].
ComputedValue
1137
this.Editor.NotifyVariableNameChanged(this.identifierName, name, (string)this.ReflectedObject.Properties[VariableNameProperty].
ComputedValue
);
1151
return (string)this.ReflectedObject.Properties[VariableNameProperty].
ComputedValue
;
1186
return this.ReflectedObject.Properties[VariableModifiersProperty].
ComputedValue
;
1257
return (Type)this.ReflectedObject.Properties[VariableTypeProperty].
ComputedValue
;
1290
return this.ReflectedObject.Properties[VariableDefaultProperty].
ComputedValue
;
1306
return property.
ComputedValue
;
1412
new Func<ModelItem, bool>(p => string.Equals(p.Properties[VariableNameProperty].
ComputedValue
, newName) && !object.Equals(p, this.ReflectedObject));
1437
new Func<ModelItem, bool>(p => string.Equals(p.Properties[VariableNameProperty].
ComputedValue
, currentName) && !object.Equals(p, this.ReflectedObject));
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (2)
1963
string variableName = (string)variable.Properties["Name"].
ComputedValue
;
1991
variableNames.Add(((string)variable.Properties["Name"].
ComputedValue
).ToUpperInvariant());