C# Класс OLinq.Operation

Base operation type. An operation is associated with an Expression and implements its functionality.
Наследование: IDisposable
Показать файл Открыть проект

Открытые методы

Метод Описание
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