2 writes to strValue
Microsoft.Maui.Controls.Xaml (2)
MarkupExpressionParser.cs (2)
151 return new Property { last = next == '}', name = name, strValue = str_value, value = value }; 170 return new Property { last = last, name = prop, strValue = value as string, value = value };
5 references to strValue
Microsoft.Maui.Controls.Build.Tasks (2)
ExpandMarkupsVisitor.cs (2)
179 typeArguments = TypeArgumentsParser.ParseExpression(parsed.strValue, nsResolver, xmlLineInfo); 184 var childnode = parsed.value as INode ?? new ValueNode(parsed.strValue, nsResolver);
Microsoft.Maui.Controls.Xaml (3)
ExpandMarkupsVisitor.cs (2)
170 typeArguments = TypeArgumentsParser.ParseExpression(parsed.strValue, nsResolver, xmlLineInfo); 175 var childnode = parsed.value as INode ?? new ValueNode(parsed.strValue, nsResolver);
MarkupExtensionParser.cs (1)
57 SetPropertyValue(value.name, value.strValue, value.value, serviceProvider);