C# Класс Emgu.CV.UI.Operation

An operation contains the MethodInfo and the methods parameters. It provides a way to invoke a specific method with the specific parameters.
Наследование: ICodeGenerable
Показать файл Открыть проект

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

Метод Описание
InvokeMethod ( Object instance ) : Object

Call the specific method with the specific parameters on the provided instance

Operation ( MethodInfo mi, Object parameters ) : System

Craete an operation using the specific method and parameters

ToCode ( ProgrammingLanguage language ) : String

Represent this operation as code

ToString ( ) : string

Represent this operation as a string

Приватные методы

Метод Описание
ParameterToCode ( Object parameter, ProgrammingLanguage language ) : String

Описание методов

InvokeMethod() публичный Метод

Call the specific method with the specific parameters on the provided instance
public InvokeMethod ( Object instance ) : Object
instance Object The instance to call the method
Результат Object

Operation() публичный Метод

Craete an operation using the specific method and parameters
public Operation ( MethodInfo mi, Object parameters ) : System
mi System.Reflection.MethodInfo The method info
parameters Object The parameters for this method
Результат System

ToCode() публичный Метод

Represent this operation as code
public ToCode ( ProgrammingLanguage language ) : String
language ProgrammingLanguage
Результат String

ToString() публичный Метод

Represent this operation as a string
public ToString ( ) : string
Результат string