18 references to SetValue
System.Private.Windows.Core (18)
Windows\Win32\System\Variant\VARIANT.cs (18)
534SetValue(array, psa->GetValue<sbyte>(indices), indices, lowerBounds); 537SetValue(array, psa->GetValue<byte>(indices), indices, lowerBounds); 540SetValue(array, psa->GetValue<short>(indices), indices, lowerBounds); 543SetValue(array, psa->GetValue<ushort>(indices), indices, lowerBounds); 547SetValue(array, psa->GetValue<int>(indices), indices, lowerBounds); 552SetValue(array, psa->GetValue<uint>(indices), indices, lowerBounds); 555SetValue(array, psa->GetValue<long>(indices), indices, lowerBounds); 558SetValue(array, psa->GetValue<ulong>(indices), indices, lowerBounds); 561SetValue(array, psa->GetValue<float>(indices), indices, lowerBounds); 564SetValue(array, psa->GetValue<double>(indices), indices, lowerBounds); 569SetValue(array, data != VARIANT_BOOL.VARIANT_FALSE, indices, lowerBounds); 576SetValue(array, data.ToDecimal(), indices, lowerBounds); 583SetValue(array, decimal.FromOACurrency(data), indices, lowerBounds); 590SetValue(array, DateTime.FromOADate(data), indices, lowerBounds); 597SetValue(array, Marshal.PtrToStringUni(data), indices, lowerBounds); 607SetValue<object?>(array, null, indices, lowerBounds); 611SetValue(array, ComHelpers.GetObjectForIUnknown((IUnknown*)data), indices, lowerBounds); 620SetValue(array, data.ToObject(), indices, lowerBounds);