38 references to GetValue
Microsoft.Private.Windows.Core (38)
System\Value.cs (38)
107public static explicit operator byte(in Value value) => value.GetValue<byte>(); 109public static explicit operator byte?(in Value value) => value.GetValue<byte?>(); 133public static explicit operator sbyte(in Value value) => value.GetValue<sbyte>(); 135public static explicit operator sbyte?(in Value value) => value.GetValue<sbyte?>(); 159public static explicit operator bool(in Value value) => value.GetValue<bool>(); 161public static explicit operator bool?(in Value value) => value.GetValue<bool?>(); 185public static explicit operator char(in Value value) => value.GetValue<char>(); 187public static explicit operator char?(in Value value) => value.GetValue<char?>(); 211public static explicit operator short(in Value value) => value.GetValue<short>(); 213public static explicit operator short?(in Value value) => value.GetValue<short?>(); 237public static explicit operator int(in Value value) => value.GetValue<int>(); 239public static explicit operator int?(in Value value) => value.GetValue<int?>(); 263public static explicit operator long(in Value value) => value.GetValue<long>(); 265public static explicit operator long?(in Value value) => value.GetValue<long?>(); 289public static explicit operator ushort(in Value value) => value.GetValue<ushort>(); 291public static explicit operator ushort?(in Value value) => value.GetValue<ushort?>(); 315public static explicit operator uint(in Value value) => value.GetValue<uint>(); 317public static explicit operator uint?(in Value value) => value.GetValue<uint?>(); 341public static explicit operator ulong(in Value value) => value.GetValue<ulong>(); 343public static explicit operator ulong?(in Value value) => value.GetValue<ulong?>(); 367public static explicit operator float(in Value value) => value.GetValue<float>(); 369public static explicit operator float?(in Value value) => value.GetValue<float?>(); 393public static explicit operator double(in Value value) => value.GetValue<double>(); 395public static explicit operator double?(in Value value) => value.GetValue<double?>(); 419public static explicit operator Size(in Value value) => value.GetValue<Size>(); 421public static explicit operator Size?(in Value value) => value.GetValue<Size?>(); 445public static explicit operator Point(in Value value) => value.GetValue<Point>(); 447public static explicit operator Point?(in Value value) => value.GetValue<Point?>(); 478public static explicit operator Color(in Value value) => value.GetValue<Color>(); 480public static explicit operator Color?(in Value value) => value.GetValue<Color?>(); 517public static explicit operator DateTimeOffset(in Value value) => value.GetValue<DateTimeOffset>(); 519public static explicit operator DateTimeOffset?(in Value value) => value.GetValue<DateTimeOffset?>(); 543public static explicit operator DateTime(in Value value) => value.GetValue<DateTime>(); 545public static explicit operator DateTime?(in Value value) => value.GetValue<DateTime?>(); 566public static explicit operator ArraySegment<byte>(in Value value) => value.GetValue<ArraySegment<byte>>(); 585public static explicit operator ArraySegment<char>(in Value value) => value.GetValue<ArraySegment<char>>(); 590public static explicit operator decimal(in Value value) => value.GetValue<decimal>(); 592public static explicit operator decimal?(in Value value) => value.GetValue<decimal?>();