2 types derived from ConvertBinder
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\CSharpConvertBinder.cs (1)
19internal sealed class CSharpConvertBinder : ConvertBinder, ICSharpBinder
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
818Inherits ConvertBinder
1 instantiation of ConvertBinder
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
822MyBase.New(t, True)
11 references to ConvertBinder
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
1473ByVal action As ConvertBinder,
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> 107public virtual DynamicMetaObject BindConvert(ConvertBinder binder)
System\Dynamic\DynamicObject.cs (4)
98public virtual bool TryConvert(ConvertBinder binder, out object? result) 267public override DynamicMetaObject BindConvert(ConvertBinder binder) 275(MetaDynamic @this, ConvertBinder b, DynamicMetaObject? e) => b.FallbackConvert(@this, e) 579Debug.Assert(binder is ConvertBinder && fallbackInvoke == null);