1 write to LocalName
Microsoft.Maui.Controls.Xaml (1)
XmlName.cs (1)
25 LocalName = localName;
34 references to LocalName
Microsoft.Maui.Controls.Build.Tasks (12)
CompiledMarkupExtensions\StaticResourceExtension.cs (2)
115 var localName = propertyName.LocalName; 160 var localName = propertyName.LocalName;
ExpandMarkupsVisitor.cs (1)
173 if (childname.NamespaceURI == null && childname.LocalName == null)
SetPropertiesVisitor.cs (7)
107 var localName = propertyName.LocalName; 187 var localname = parentList.XmlName.LocalName; 590 && propertyName.LocalName == nameof(BindableObject.BindingContext); 599 && parentType.GetProperty(context.Cache, pd => pd.Name == propertyName.LocalName, out var propertyDeclaringTypeRef) is PropertyDefinition propertyDef 1104 var localName = propertyName.LocalName; 1137 var localName = propertyName.LocalName; 1612 var localName = propertyName.LocalName;
SetResourcesVisitor.cs (2)
44 if ((propertyName.LocalName == "Resources" || propertyName.LocalName.EndsWith(".Resources", StringComparison.Ordinal)))
Microsoft.Maui.Controls.Xaml (22)
ApplyPropertiesVisitor.cs (6)
210 xpe = new XamlParseException($"Property {parentList.XmlName.LocalName} is null or is not IEnumerable", node); 221 xpe = xpe ?? new XamlParseException($"Value of {parentList.XmlName.LocalName} does not have a Add() method", node); 332 var localName = propertyName.LocalName; 352 if (xamlelement is ResourceDictionary rd && propertyName.LocalName == "Source" && propertyName.NamespaceURI == "") 370 var localName = propertyName.LocalName; 433 var localName = propertyName.LocalName;
ExpandMarkupsVisitor.cs (1)
164 if (childname.NamespaceURI == null && childname.LocalName == null)
FillResourceDictionariesVisitor.cs (2)
48 if ((propertyName.LocalName == "Resources" || 49 propertyName.LocalName.EndsWith(".Resources", StringComparison.Ordinal)) && value is ResourceDictionary)
RemoveDuplicateDesignNodes.cs (2)
32 var k = new XmlName(XamlParser.MauiUri, key.LocalName); 36 node.Properties.Remove(new XmlName("", k.LocalName));
XamlParser.cs (3)
225 if (propertyName.NamespaceURI == null && propertyName.LocalName == null) 244 switch (name.LocalName) 261 switch (name.LocalName)
XamlServiceProvider.cs (2)
322 && name.LocalName == nameof(BindableObject.BindingContext)) 334 && parentType.GetRuntimeProperties().FirstOrDefault(p => p.Name == name.LocalName) is PropertyInfo propertyInfo
XmlName.cs (6)
35 return NamespaceURI == other.NamespaceURI && LocalName == other.LocalName; 54 if (LocalName != null) 55 hashCode = (hashCode * 397) ^ LocalName.GetHashCode(StringComparison.Ordinal); 62 => x1.NamespaceURI == x2.NamespaceURI && x1.LocalName == x2.LocalName;