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;
10 references to IsEmpty
Microsoft.Maui.Controls (9)
Compatibility\Handlers\NavigationPage\iOS\NavigationRenderer.cs (1)
1552
if (titleIcon == null || titleIcon.
IsEmpty
)
Compatibility\iOS\Extensions\ToolbarItemExtensions.cs (4)
38
if (item.IconImageSource != null && !item.IconImageSource.
IsEmpty
&& !forceName)
78
if (item.IconImageSource == null || item.IconImageSource.
IsEmpty
|| _forceName)
85
if (item.IconImageSource != null && !item.IconImageSource.
IsEmpty
)
192
if (item.IconImageSource != null && !item.IconImageSource.
IsEmpty
)
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)
91
if (imageSource is null || imageSource.
IsEmpty
)
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Extensions\ImageExtensions.cs (1)
20
imageSource == null || imageSource.
IsEmpty
;