18 references to SetValue
System.Private.Windows.Core (18)
Windows\Win32\System\Variant\VARIANT.cs (18)
524SetValue(array, psa->GetValue<sbyte>(indices), indices, lowerBounds); 527SetValue(array, psa->GetValue<byte>(indices), indices, lowerBounds); 530SetValue(array, psa->GetValue<short>(indices), indices, lowerBounds); 533SetValue(array, psa->GetValue<ushort>(indices), indices, lowerBounds); 537SetValue(array, psa->GetValue<int>(indices), indices, lowerBounds); 542SetValue(array, psa->GetValue<uint>(indices), indices, lowerBounds); 545SetValue(array, psa->GetValue<long>(indices), indices, lowerBounds); 548SetValue(array, psa->GetValue<ulong>(indices), indices, lowerBounds); 551SetValue(array, psa->GetValue<float>(indices), indices, lowerBounds); 554SetValue(array, psa->GetValue<double>(indices), indices, lowerBounds); 559SetValue(array, data != VARIANT_BOOL.VARIANT_FALSE, indices, lowerBounds); 566SetValue(array, data.ToDecimal(), indices, lowerBounds); 573SetValue(array, decimal.FromOACurrency(data), indices, lowerBounds); 580SetValue(array, DateTime.FromOADate(data), indices, lowerBounds); 587SetValue(array, Marshal.PtrToStringUni(data), indices, lowerBounds); 597SetValue<object?>(array, null, indices, lowerBounds); 601SetValue(array, ComHelpers.GetObjectForIUnknown((IUnknown*)data), indices, lowerBounds); 610SetValue(array, data.ToObject(), indices, lowerBounds);