Implemented interface member:
property
IsEmpty
Microsoft.Maui.IImageSource.IsEmpty
4 overrides of IsEmpty
Microsoft.Maui.Controls (4)
FileImageSource.cs (1)
14 public override bool IsEmpty => string.IsNullOrEmpty(File);
FontImageSource.cs (1)
10 public override bool IsEmpty => string.IsNullOrEmpty(Glyph);
StreamImageSource.cs (1)
17 public override bool IsEmpty => Stream == null;
UriImageSource.cs (1)
30 public override bool IsEmpty => Uri == null;
4 references to IsEmpty
Microsoft.Maui.Controls (4)
ImageBrush.cs (1)
16 ImageSource?.IsEmpty ?? true;
ImageSource.cs (1)
32 imageSource == null || imageSource.IsEmpty;
Platform\ImageExtensions.cs (1)
6 imageSource is null || imageSource.IsEmpty;
TitleBar\TitleBar.cs (1)
92 if (imageSource is null || imageSource.IsEmpty)