1 write to RawValue
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\Engine\DkmClrValue.cs (1)
47this.RawValue = value;
19 references to RawValue
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (19)
Debugger\Engine\DkmClrValue.cs (19)
84if (RawValue == null) 94var intPtr = Environment.Is64BitProcess ? new IntPtr((long)RawValue) : new IntPtr((int)RawValue); 125return ((RawValue == null) && !lmrType.IsValueType) || (lmrType.IsPointer && (Convert.ToInt64(RawValue) == 0)); 228var rawValue = RawValue; 304var fieldValue = field.GetValue(RawValue); 318var propertyValue = property.GetValue(RawValue); 340var methodValue = method.Invoke(RawValue, []); 417var boolValue = RawValue != null; 434var valueType = runtime.GetType((TypeImpl)RawValue.GetType()); 436RawValue, 437RawValue, 473value = field.GetValue(RawValue); 500value = property.GetValue(RawValue, bindingFlags, null, null, null); 568var array = (System.Array)RawValue; 584var array = (Array)RawValue; 604var array = (Array)RawValue; 635var value = constructor.Invoke(bindingFlags, null, new[] { RawValue }, null);