2 types derived from UnaryOperationBinder
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\CSharpUnaryOperationBinder.cs (1)
19internal sealed class CSharpUnaryOperationBinder : UnaryOperationBinder, ICSharpBinder
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
866Inherits UnaryOperationBinder
1 instantiation of UnaryOperationBinder
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
872MyBase.New(linqOp)
9 references to UnaryOperationBinder
netstandard (1)
netstandard.cs (1)
778[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.UnaryOperationBinder))]
System.Core (1)
System.Core.cs (1)
83[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.UnaryOperationBinder))]
System.Dynamic.Runtime (1)
System.Dynamic.Runtime.cs (1)
26[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.UnaryOperationBinder))]
System.Linq.Expressions (6)
System\Dynamic\DynamicMetaObject.cs (2)
223/// <param name="binder">An instance of the <see cref="UnaryOperationBinder"/> that represents the details of the dynamic operation.</param> 225public virtual DynamicMetaObject BindUnaryOperation(UnaryOperationBinder binder)
System\Dynamic\DynamicObject.cs (3)
157public virtual bool TryUnaryOperation(UnaryOperationBinder binder, out object? result) 367public override DynamicMetaObject BindUnaryOperation(UnaryOperationBinder binder) 375(MetaDynamic @this, UnaryOperationBinder b, DynamicMetaObject? e) => b.FallbackUnaryOperation(@this, e)
System\Dynamic\UnaryOperationBinder.cs (1)
17/// Initializes a new instance of the <see cref="UnaryOperationBinder"/> class.