22 references to Empty
Microsoft.CSharp (7)
Microsoft\CSharp\RuntimeBinder\BinderHelper.cs (1)
33BindingRestrictions restrictions = BindingRestrictions.Empty;
Microsoft\CSharp\RuntimeBinder\ComInterop\ComClassMetaObject.cs (1)
14: base(expression, BindingRestrictions.Empty, cls)
Microsoft\CSharp\RuntimeBinder\ComInterop\ComObject.cs (1)
114return new ComFallbackMetaObject(parameter, BindingRestrictions.Empty, this);
Microsoft\CSharp\RuntimeBinder\ComInterop\DispCallableMetaObject.cs (1)
17: base(expression, BindingRestrictions.Empty, callable)
Microsoft\CSharp\RuntimeBinder\ComInterop\IDispatchMetaObject.cs (1)
19: base(expression, BindingRestrictions.Empty, self)
Microsoft\CSharp\RuntimeBinder\ComInterop\TypeEnumMetaObject.cs (1)
15: base(expression, BindingRestrictions.Empty, desc) {
Microsoft\CSharp\RuntimeBinder\ComInterop\TypeLibMetaObject.cs (1)
14: base(expression, BindingRestrictions.Empty, lib) {
PresentationFramework-SystemCore (1)
DynamicAccessorImpl.cs (1)
241BindingRestrictions.Empty
System.Linq.Expressions (14)
System\Dynamic\BindingRestrictions.cs (4)
44if (this == Empty) 49if (restrictions == Empty) 124BindingRestrictions res = Empty; 351public bool IsEmpty => _node == Empty;
System\Dynamic\DynamicMetaObject.cs (1)
301return new DynamicMetaObject(expression, BindingRestrictions.Empty, value);
System\Dynamic\DynamicMetaObjectBinder.cs (2)
116if (restrictions == BindingRestrictions.Empty) 129if (restrictions != BindingRestrictions.Empty)
System\Dynamic\DynamicObject.cs (3)
213: base(expression, BindingRestrictions.Empty, value) 574var resultMO = new DynamicMetaObject(result, BindingRestrictions.Empty); 835Debug.Assert(Restrictions == BindingRestrictions.Empty, "We don't merge, restrictions are always empty");
System\Dynamic\ExpandoObject.cs (4)
779: base(expression, BindingRestrictions.Empty, value) 802var result = new DynamicMetaObject(value, BindingRestrictions.Empty); 874BindingRestrictions.Empty 1010Debug.Assert(Restrictions == BindingRestrictions.Empty, "We don't merge, restrictions are always empty");