5 references to clrUriPrefix
PresentationFramework (5)
System\Windows\Markup\Primitives\MarkupWriter.cs (5)
1618
result = $"{
clrUriPrefix
};assembly={type.Assembly.GetName().Name}";
1625
result = $"{
clrUriPrefix
}{type.Namespace};assembly={type.Assembly.GetName().Name}";
1641
if (uri.StartsWith(
clrUriPrefix
, StringComparison.Ordinal))
1643
ReadOnlySpan<char> ns = uri.AsSpan(
clrUriPrefix
.Length, uri.IndexOf(';') -
clrUriPrefix
.Length);