C# 클래스 OLinq.Operation

Base operation type. An operation is associated with an Expression and implements its functionality.
상속: IDisposable
파일 보기 프로젝트 열기: wasabii/OLinq

공개 메소드들

메소드 설명
CreateMethodCallOperation ( Type type, OperationContext context, MethodCallExpression expression ) : IOperation

Generates a new method call operation.

Dispose ( ) : void

Disposes of the operation.

IsMethod ( MethodInfo method, string name, int typeArgs, int parameters ) : bool

보호된 메소드들

메소드 설명
Operation ( OperationContext context, Expression expression ) : System

Initializes a new instance.

메소드 상세

CreateMethodCallOperation() 공개 정적인 메소드

Generates a new method call operation.
public static CreateMethodCallOperation ( Type type, OperationContext context, MethodCallExpression expression ) : IOperation
type System.Type
context OperationContext
expression System.Linq.Expressions.MethodCallExpression
리턴 IOperation

Dispose() 공개 메소드

Disposes of the operation.
public Dispose ( ) : void
리턴 void

IsMethod() 공개 정적인 메소드

public static IsMethod ( MethodInfo method, string name, int typeArgs, int parameters ) : bool
method System.Reflection.MethodInfo
name string
typeArgs int
parameters int
리턴 bool

Operation() 보호된 메소드

Initializes a new instance.
protected Operation ( OperationContext context, Expression expression ) : System
context OperationContext
expression System.Linq.Expressions.Expression
리턴 System