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