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
파일 보기 프로젝트 열기: genecyber/PredatorCV

공개 메소드들

메소드 설명
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