Implemented interface member:
property
Address
Microsoft.Maui.Maps.IMapPin.Address
5 references to Address
Microsoft.Maui.Controls.Maps (5)
Pin.cs (5)
19
/// <summary>Bindable property for <see cref="
Address
"/>.</summary>
20
public static readonly BindableProperty AddressProperty = BindableProperty.Create(nameof(
Address
), typeof(string), typeof(Pin), default(string));
111
hashCode = (hashCode * 397) ^ (
Address
?.GetHashCode() ?? 0);
174
string.Equals(
Address
, other.
Address
, StringComparison.Ordinal);