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