3 overrides of StringValue
PresentationFramework (3)
src\Framework\System\Windows\Markup\Primitives\ElementMarkupObject.cs (2)
475
public override string
StringValue
1016
public override string
StringValue
src\Framework\System\Windows\Markup\Primitives\ExtensionSimplifierMarkupObject.cs (1)
100
public override string
StringValue
15 references to StringValue
PresentationFramework (15)
src\Framework\System\Windows\Markup\Primitives\ExtensionSimplifierMarkupObject.cs (2)
102
get { return _baseProperty.
StringValue
; }
360
string 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
);
831
stringContent = contentProperty.
StringValue
;
851
if (property.IsComposite || property.
StringValue
.IndexOf("{", StringComparison.Ordinal) == 0)
860
_writer.WriteString(property.
StringValue
);
1150
return property.
StringValue
;
1176
return IsNormalizationNeutralString(contentProperty.
StringValue
, keepLeadingSpace,