1 implementation of ReturnType
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\CSharpIsEventBinder.cs (1)
77
public override Type
ReturnType
=> typeof(bool);
6 references to ReturnType
Microsoft.CSharp (6)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (6)
264
Debug.Assert(action.
ReturnType
== typeof(object));
265
return Expression.Block(binding, Expression.Default(action.
ReturnType
));
271
if (binding.Type.IsValueType && !action.
ReturnType
.IsValueType)
273
Debug.Assert(action.
ReturnType
== typeof(object));
274
return Expression.Convert(binding, action.
ReturnType
);
294
return action.
ReturnType
;