25 references to GetValue
System.Private.Windows.Core (17)
Windows\Win32\System\Variant\VARIANT.cs (17)
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); 568VARIANT_BOOL data = psa->GetValue<VARIANT_BOOL>(indices); 575DECIMAL data = psa->GetValue<DECIMAL>(indices); 582long data = psa->GetValue<long>(indices); 589double data = psa->GetValue<double>(indices); 596IntPtr data = psa->GetValue<IntPtr>(indices); 604IntPtr data = psa->GetValue<IntPtr>(indices); 619VARIANT data = psa->GetValue<VARIANT>(indices);
System.Windows.Forms.Primitives.Tests (8)
Interop\Oleaut32\SAFEARRAYTests.cs (8)
250Assert.Equal(1, psa->GetValue<int>(indices1)); 251Assert.Equal(2, psa->GetValue<int>(indices2)); 297Assert.Equal(1, psa->GetValue<int>(indices1)); 298Assert.Equal(2, psa->GetValue<int>(indices2)); 351Assert.Equal(1, psa->GetValue<int>(indices1)); 352Assert.Equal(2, psa->GetValue<int>(indices2)); 405Assert.Equal(1, psa->GetValue<int>(indices1)); 406Assert.Equal(2, psa->GetValue<int>(indices2));