41 references to Value
Microsoft.CSharp (13)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (12)
54
object value = o.
Value
;
71
if (o.
Value
is double && double.IsNaN((double)o.
Value
))
77
else if (o.
Value
is float && float.IsNaN((float)o.
Value
))
85
Expression e = Expression.Equal(o.Expression, Expression.Constant(o.
Value
, o.Expression.Type));
118
Expression.Assign(tempForIncrement, Expression.Convert(arg0.Expression, arg0.
Value
.GetType())),
196
IsComObject(argument.
Value
);
233
argument.
Value
== null ||
238
BindingRestrictions.GetInstanceRestriction(argument.Expression, argument.
Value
) :
290
Debug.Assert(args[0].
Value
is Type);
291
return args[0].
Value
as Type;
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
255
array[i] = new ArgumentObject(args[i].
Value
, info, GetArgumentType(payload, info, parameters[i], args[i], i));
Microsoft.VisualBasic.Core (20)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (20)
318
If errorSuggestion IsNot Nothing AndAlso Not CanBindCall(target.
Value
, Name, argValues, argNames, _ignoreReturn) Then
397
If errorSuggestion IsNot Nothing AndAlso Not CanBindGet(target.
Value
, Name, argValues, argNames) Then
485
If errorSuggestion IsNot Nothing AndAlso Not CanBindInvokeDefault(target.
Value
, argValues, argNames, _lateCall) Then
554
If errorSuggestion IsNot Nothing AndAlso Not CanBindInvokeDefault(target.
Value
, argValues, argNames, _reportErrors) Then
623
If errorSuggestion IsNot Nothing AndAlso Not CanBindInvokeDefault(target.
Value
, argValues, argNames, _reportErrors) Then
684
If errorSuggestion IsNot Nothing AndAlso Not CanBindSet(target.
Value
, Name, value.
Value
, False, False) Then
741
If errorSuggestion IsNot Nothing AndAlso Not CanBindSet(target.
Value
, Name, value.
Value
, _optimisticSet, _rValueBase) Then
837
If errorSuggestion IsNot Nothing AndAlso Not Conversions.CanUserDefinedConvert(target.
Value
, Me.Type()) Then
886
If errorSuggestion IsNot Nothing AndAlso Operators.GetCallableUserDefinedOperator(_Op, target.
Value
) Is Nothing Then
935
If errorSuggestion IsNot Nothing AndAlso Operators.GetCallableUserDefinedOperator(_Op, target.
Value
, arg.
Value
) Is Nothing Then
994
indexValuesPlusValue(indexValues.Length) = value.
Value
997
Not CanIndexSetComplex(target.
Value
, indexValuesPlusValue, indexNames, False, False) Then
1067
indexValuesPlusValue(indexValues.Length) = value.
Value
1070
Not CanIndexSetComplex(target.
Value
, indexValuesPlusValue, indexNames, _optimisticSet, _rValueBase) Then
1292
argValues(i) = p.
Value
1298
argValues(i) = p.
Value
1528
If metaObject.
Value
Is Nothing Then
System.Linq.Expressions (8)
System\Dynamic\BindingRestrictions.cs (1)
78
if (obj.
Value
== null && obj.HasValue)
System\Dynamic\DynamicMetaObject.cs (2)
87
return
Value
?.GetType();
291
idoMetaObject.
Value
== null ||
System\Dynamic\DynamicMetaObjectBinder.cs (3)
101
if (target.
Value
is IDynamicMetaObjectProvider)
103
throw System.Linq.Expressions.Error.DynamicObjectResultNotAssignable(body.Type, target.
Value
.GetType(), this, expectedResult);
118
throw System.Linq.Expressions.Error.DynamicBindingNeedsRestrictions(target.
Value
!.GetType(), this);
System\Dynamic\DynamicObject.cs (1)
854
private new DynamicObject Value => (DynamicObject)base.
Value
!;
System\Dynamic\ExpandoObject.cs (1)
1015
public new ExpandoObject Value => (ExpandoObject)base.
Value
!;