-
I was trying to write a
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Similarly how can it access |
Beta Was this translation helpful? Give feedback.
-
Hi @Ghostbird, Please see my answers to your questions below:
I agree it is quite tricky to read. The underlying concept is to debounce any changes coming in and these can come from each of the properties on this class (e.g.
I guess if it is likely that the stream could be requested multiple times in a very short space of time debouncing would be a good option.
It is actually
We have a special relationship with the .NET MAUI team and they expose their internals to this toolkit so that we can do such things. This is in the hope that tried and tested concepts in the toolkit can eventually be migrated into .NET MAUI itself. |
Beta Was this translation helpful? Give feedback.
-
Closed as answered |
Beta Was this translation helpful? Give feedback.
Hi @Ghostbird,
Please see my answers to your questions below:
I agree it is quite tricky to read. The underlying concept is to debounce any changes coming in and these can come from each of the properties on this class (e.g.
Email
,DefaultImage
) as well as the the sizing changing of the control hosting the image. By debouncing we try to reduce the number of requests to gravatar.com.I guess if it is likely that the stream could be requested multiple times in a very short space of time debouncing would be a good option.