38 references to GetValue
System.Private.Windows.Core (38)
System\Value.cs (38)
108public static explicit operator byte(in Value value) => value.GetValue<byte>(); 110public static explicit operator byte?(in Value value) => value.GetValue<byte?>(); 134public static explicit operator sbyte(in Value value) => value.GetValue<sbyte>(); 136public static explicit operator sbyte?(in Value value) => value.GetValue<sbyte?>(); 160public static explicit operator bool(in Value value) => value.GetValue<bool>(); 162public static explicit operator bool?(in Value value) => value.GetValue<bool?>(); 186public static explicit operator char(in Value value) => value.GetValue<char>(); 188public static explicit operator char?(in Value value) => value.GetValue<char?>(); 212public static explicit operator short(in Value value) => value.GetValue<short>(); 214public static explicit operator short?(in Value value) => value.GetValue<short?>(); 238public static explicit operator int(in Value value) => value.GetValue<int>(); 240public static explicit operator int?(in Value value) => value.GetValue<int?>(); 264public static explicit operator long(in Value value) => value.GetValue<long>(); 266public static explicit operator long?(in Value value) => value.GetValue<long?>(); 290public static explicit operator ushort(in Value value) => value.GetValue<ushort>(); 292public static explicit operator ushort?(in Value value) => value.GetValue<ushort?>(); 316public static explicit operator uint(in Value value) => value.GetValue<uint>(); 318public static explicit operator uint?(in Value value) => value.GetValue<uint?>(); 342public static explicit operator ulong(in Value value) => value.GetValue<ulong>(); 344public static explicit operator ulong?(in Value value) => value.GetValue<ulong?>(); 368public static explicit operator float(in Value value) => value.GetValue<float>(); 370public static explicit operator float?(in Value value) => value.GetValue<float?>(); 394public static explicit operator double(in Value value) => value.GetValue<double>(); 396public static explicit operator double?(in Value value) => value.GetValue<double?>(); 420public static explicit operator Size(in Value value) => value.GetValue<Size>(); 422public static explicit operator Size?(in Value value) => value.GetValue<Size?>(); 446public static explicit operator Point(in Value value) => value.GetValue<Point>(); 448public static explicit operator Point?(in Value value) => value.GetValue<Point?>(); 479public static explicit operator Color(in Value value) => value.GetValue<Color>(); 481public static explicit operator Color?(in Value value) => value.GetValue<Color?>(); 518public static explicit operator DateTimeOffset(in Value value) => value.GetValue<DateTimeOffset>(); 520public static explicit operator DateTimeOffset?(in Value value) => value.GetValue<DateTimeOffset?>(); 544public static explicit operator DateTime(in Value value) => value.GetValue<DateTime>(); 546public static explicit operator DateTime?(in Value value) => value.GetValue<DateTime?>(); 567public static explicit operator ArraySegment<byte>(in Value value) => value.GetValue<ArraySegment<byte>>(); 586public static explicit operator ArraySegment<char>(in Value value) => value.GetValue<ArraySegment<char>>(); 591public static explicit operator decimal(in Value value) => value.GetValue<decimal>(); 593public static explicit operator decimal?(in Value value) => value.GetValue<decimal?>();