2 instantiations of ValuePoint
Microsoft.AspNetCore.Components.Endpoints.Tests (2)
Binding\FormDataMapperTests.cs (2)
256var expected = new ValuePoint { X = 1, Y = 1 }; 2300var result = new ValuePoint();
15 references to ValuePoint
Microsoft.AspNetCore.Components.Endpoints.Tests (15)
Binding\FormDataMapperTests.cs (15)
256var expected = new ValuePoint { X = 1, Y = 1 }; 263var result = FormDataMapper.Map<ValuePoint?>(reader, options); 279var result = FormDataMapper.Map<ValuePoint?>(reader, options); 2285internal struct ValuePoint : IParsable<ValuePoint>, IEquatable<ValuePoint> 2291public static ValuePoint Parse(string s, IFormatProvider provider) 2300var result = new ValuePoint(); 2306public static bool TryParse([NotNullWhen(true)] string s, IFormatProvider provider, [MaybeNullWhen(false)] out ValuePoint result) 2322public override bool Equals(object obj) => Equals((ValuePoint)obj); 2324public bool Equals(ValuePoint other) => X == other.X && Y == other.Y; 2328public static bool operator ==(ValuePoint left, ValuePoint right) => EqualityComparer<ValuePoint>.Default.Equals(left, right); 2330public static bool operator !=(ValuePoint left, ValuePoint right) => !(left == right);