3 writes to BoundString
Microsoft.AspNetCore.Components.Tests (3)
RendererTest.cs (3)
4329var component = new BoundPropertyComponent { BoundString = oldValue }; 4376var component = new BoundPropertyComponent { BoundString = "old property value" }; 5914BoundString = (string)eventArgs.Value;
5 references to BoundString
Microsoft.AspNetCore.Components.Tests (5)
RendererTest.cs (5)
4352Assert.Equal("new property value", component.BoundString); 4404Assert.Equal(newPropertyValue, component.BoundString); 5911builder.AddAttribute(1, nameof(BoundString), BoundString); 5918builder.SetUpdatesAttributeName(nameof(BoundString));