1 type derived from ConvertBinder
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\CSharpConvertBinder.cs (1)
20
internal sealed class CSharpConvertBinder :
ConvertBinder
, ICSharpBinder
12 references to ConvertBinder
Microsoft.CSharp (2)
Microsoft\CSharp\RuntimeBinder\ComInterop\ComBinder.cs (2)
195
/// <param name="binder">An instance of the <see cref="
ConvertBinder
"/> that represents the details of the dynamic operation.</param>
199
public static bool TryConvert(
ConvertBinder
binder, DynamicMetaObject instance, out DynamicMetaObject result)
netstandard (1)
netstandard.cs (1)
762
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.
ConvertBinder
))]
System.Core (1)
System.Core.cs (1)
67
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.
ConvertBinder
))]
System.Dynamic.Runtime (1)
System.Dynamic.Runtime.cs (1)
16
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.
ConvertBinder
))]
System.Linq.Expressions (7)
System\Dynamic\ConvertBinder.cs (1)
17
/// Initializes a new instance of the <see cref="
ConvertBinder
" />.
System\Dynamic\DynamicMetaObject.cs (2)
105
/// <param name="binder">An instance of the <see cref="
ConvertBinder
"/> that represents the details of the dynamic operation.</param>
107
public virtual DynamicMetaObject BindConvert(
ConvertBinder
binder)
System\Dynamic\DynamicObject.cs (4)
98
public virtual bool TryConvert(
ConvertBinder
binder, out object? result)
267
public override DynamicMetaObject BindConvert(
ConvertBinder
binder)
275
(MetaDynamic @this,
ConvertBinder
b, DynamicMetaObject? e) => b.FallbackConvert(@this, e)
579
Debug.Assert(binder is
ConvertBinder
&& fallbackInvoke == null);