3 overrides of StringValue
PresentationFramework (3)
src\Framework\System\Windows\Markup\Primitives\ElementMarkupObject.cs (2)
475public override string StringValue 1016public override string StringValue
src\Framework\System\Windows\Markup\Primitives\ExtensionSimplifierMarkupObject.cs (1)
100public override string StringValue
15 references to StringValue
PresentationFramework (15)
src\Framework\System\Windows\Markup\Primitives\ExtensionSimplifierMarkupObject.cs (2)
102get { return _baseProperty.StringValue; } 360string value = property.StringValue;
src\Framework\System\Windows\Markup\Primitives\MarkupWriter.cs (13)
553_writer.WriteAttributeString(scope.GetPrefixOf(NamespaceCache.XamlNamespace), "Key", NamespaceCache.XamlNamespace, property.StringValue); 573_writer.WriteAttributeString(scope.GetPrefixOf(xamlUri), dependencyProperty.Name, xamlUri, property.StringValue); 586_writer.WriteAttributeString(localName, property.StringValue); 590_writer.WriteAttributeString(propertyPrefix, localName, typeUri, property.StringValue); 600_writer.WriteAttributeString("xml", "lang", NamespaceCache.XmlNamespace, property.StringValue); 605_writer.WriteAttributeString(scope.GetPrefixOf(xamlUri), property.PropertyDescriptor.Name, xamlUri, property.StringValue); 609_writer.WriteAttributeString(property.PropertyDescriptor.Name, property.StringValue); 813_writer.WriteString(wrappedProperty.StringValue); 831stringContent = contentProperty.StringValue; 851if (property.IsComposite || property.StringValue.IndexOf("{", StringComparison.Ordinal) == 0) 860_writer.WriteString(property.StringValue); 1150return property.StringValue; 1176return IsNormalizationNeutralString(contentProperty.StringValue, keepLeadingSpace,