1 write to RawValue
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\Engine\DkmClrValue.cs (1)
49
this.
RawValue
= value;
19 references to RawValue
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (19)
Debugger\Engine\DkmClrValue.cs (19)
86
if (
RawValue
== null)
96
var intPtr = Environment.Is64BitProcess ? new IntPtr((long)
RawValue
) : new IntPtr((int)
RawValue
);
127
return ((
RawValue
== null) && !lmrType.IsValueType) || (lmrType.IsPointer && (Convert.ToInt64(
RawValue
) == 0));
230
var rawValue =
RawValue
;
306
var fieldValue = field.GetValue(
RawValue
);
320
var propertyValue = property.GetValue(
RawValue
);
342
var methodValue = method.Invoke(
RawValue
, []);
419
var boolValue =
RawValue
!= null;
436
var valueType = runtime.GetType((TypeImpl)
RawValue
.GetType());
438
RawValue
,
439
RawValue
,
475
value = field.GetValue(
RawValue
);
502
value = property.GetValue(
RawValue
, bindingFlags, null, null, null);
570
var array = (System.Array)
RawValue
;
586
var array = (Array)
RawValue
;
606
var array = (Array)
RawValue
;
637
var value = constructor.Invoke(bindingFlags, null, new[] {
RawValue
}, null);