53 references to Method
System.Activities (7)
Microsoft\VisualBasic\Activities\VisualBasicHelper.cs (1)
726
binaryExpression.
Method
,
System\Activities\Expressions\BinaryExpressionHelper.cs (1)
43
Expression expressionToCompile = OperatorPermissionHelper.InjectReflectionPermissionIfNecessary(binaryExpression.
Method
, binaryExpression);
System\Activities\Expressions\ExpressionServices.cs (4)
867
if (binaryExpressionBody.
Method
!= null)
1212
if (!binaryExpression.
Method
.IsStatic)
1226
MethodName = binaryExpression.
Method
.Name,
1227
TargetType = binaryExpression.
Method
.DeclaringType,
System\Activities\ExpressionUtilities.cs (1)
936
binaryExpression.
Method
,
System.Core (38)
Microsoft\Scripting\Ast\BinaryExpression.cs (13)
129
return Expression.MakeBinary(NodeType, left, right, IsLiftedToNull,
Method
, conversion);
200
Expression r = Expression.MakeBinary(op, _left, _right, false,
Method
);
228
Expression e2 = Expression.MakeBinary(op, Expression.MakeMemberAccess(temp1, member.Member), _right, false,
Method
);
282
Expression op = Expression.MakeBinary(binaryOp, tempIndex, _right, false,
Method
);
421
MethodInfo opTrueFalse = TypeUtils.GetBooleanOperator(
Method
.DeclaringType, opName);
439
Method
,
645
throw Error.UserDefinedOpMustHaveValidReturnType(binaryType, b.
Method
.Name);
649
ValidateOpAssignConversionLambda(conversion, b.Left, b.
Method
, b.NodeType);
650
b = new OpAssignMethodConversionBinaryExpression(b.NodeType, b.Left, b.Right, b.Left.Type, b.
Method
, conversion);
659
ParameterInfo[] pis = b.
Method
.GetParametersCached();
672
throw Error.UserDefinedOpMustHaveValidReturnType(binaryType, b.
Method
.Name);
676
ValidateOpAssignConversionLambda(conversion, b.Left, b.
Method
, b.NodeType);
677
b = new OpAssignMethodConversionBinaryExpression(b.NodeType, b.Left, b.Right, b.Left.Type, b.
Method
, conversion);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
46
public MethodInfo Method { get { return _node.
Method
; } }
Microsoft\Scripting\Ast\ExpressionVisitor.cs (3)
645
if (before != after && before.
Method
== null) {
646
if (after.
Method
!= null) {
647
throw Error.MustRewriteWithoutMethod(after.
Method
, "VisitBinary");
Microsoft\Scripting\Ast\SwitchExpression.cs (1)
268
comparison = equal.
Method
;
Microsoft\Scripting\Compiler\LambdaCompiler.Address.cs (1)
79
Debug.Assert(node.NodeType == ExpressionType.ArrayIndex && node.
Method
== null);
Microsoft\Scripting\Compiler\LambdaCompiler.Binary.cs (3)
43
if (b.
Method
!= null) {
104
MethodCallExpression mc = Expression.Call(null, b.
Method
, p1, p2);
131
EmitMethodCallExpression(Expression.Call(null, b.
Method
, b.Left, b.Right), flags);
Microsoft\Scripting\Compiler\LambdaCompiler.Logical.cs (12)
96
Debug.Assert(b.
Method
== null);
111
Debug.Assert(b.
Method
== null);
283
MethodInfo opFalse = TypeUtils.GetBooleanOperator(b.
Method
.DeclaringType, "op_False");
297
Debug.Assert(b.
Method
.IsStatic);
303
_ilg.Emit(OpCodes.Call, b.
Method
);
323
if (b.
Method
!= null && !b.IsLiftedLogical) {
410
MethodInfo opTrue = TypeUtils.GetBooleanOperator(b.
Method
.DeclaringType, "op_True");
424
Debug.Assert(b.
Method
.IsStatic);
430
_ilg.Emit(OpCodes.Call, b.
Method
);
439
if (b.
Method
!= null && !b.IsLiftedLogical) {
526
if (node.
Method
!= null) {
584
if (node.
Method
!= null || node.IsLifted) {
Microsoft\Scripting\Compiler\StackSpiller.cs (3)
229
node.
Method
,
255
RequireNoRefArgs(node.
Method
);
264
node.
Method
,
System\Linq\Expressions\ExpressionVisitor.cs (1)
124
return Expression.MakeBinary(b.NodeType, left, right, b.IsLiftedToNull, b.
Method
);
System.Data.Entity (1)
System\Data\Objects\ELinq\EntityExpressionVisitor.cs (1)
143
return Expression.MakeBinary(b.NodeType, left, right, b.IsLiftedToNull, b.
Method
);
System.Data.Linq (3)
SqlClient\Query\Funcletizer.cs (1)
251
return Expression.MakeBinary(b.NodeType, left, right, b.IsLiftedToNull, b.
Method
);
SqlClient\Query\QueryConverter.cs (2)
1300
if (b.
Method
!= null) {
1301
return sql.MethodCall(b.Type, b.
Method
, null, new SqlExpression[] { left, right }, dominatingExpression);
System.Data.Services (3)
parent\Client\System\Data\Services\Client\ALinq\ALinqExpressionVisitor.cs (1)
245
return Expression.MakeBinary(b.NodeType, left, right, b.IsLiftedToNull, b.
Method
);
System\Data\Services\Parsing\RequestQueryParser.cs (2)
1256
return ((BinaryExpression)input).
Method
!= null && ((BinaryExpression)input).
Method
.DeclaringType == typeof(OpenTypeMethods);
System.Data.Services.Client (1)
System\Data\Services\Client\ALinq\ALinqExpressionVisitor.cs (1)
245
return Expression.MakeBinary(b.NodeType, left, right, b.IsLiftedToNull, b.
Method
);