2 implementations of IWrappedValue
Microsoft.Maui.Controls (2)
OnIdiom.cs (1)
6 public class OnIdiom<T> : IWrappedValue
OnPlatform.cs (1)
9 public class OnPlatform<T> : IWrappedValue
5 references to IWrappedValue
Microsoft.Maui.Controls (5)
OnIdiom.cs (2)
91 object IWrappedValue.Value => (T)this; 92 System.Type IWrappedValue.ValueType => typeof(T);
OnPlatform.cs (2)
58 object IWrappedValue.Value => (T)this; 59 System.Type IWrappedValue.ValueType => typeof(T);
TypeConversionHelper.cs (1)
19 if (value is IWrappedValue { Value: var wrappedValue, ValueType: var wrappedType })