C# 클래스 FullInspector.Modules.BaseSerializationDelegate

파일 보기 프로젝트 열기: jacobdufault/fullinspector

공개 프로퍼티들

프로퍼티 타입 설명
MethodContainer UnityEngine.Object
MethodName string

공개 메소드들

메소드 설명
BaseSerializationDelegate ( ) : System

Construct a new, empty delegate. The delegate cannot be invoked.

BaseSerializationDelegate ( UnityEngine.Object methodContainer, string methodName ) : System

Construct a delegate that will target the given container with the specified method.

보호된 메소드들

메소드 설명
DoInvoke ( ) : object

Internal helper method to invoke the delegate with the given parameters.

메소드 상세

BaseSerializationDelegate() 공개 메소드

Construct a new, empty delegate. The delegate cannot be invoked.
public BaseSerializationDelegate ( ) : System
리턴 System

BaseSerializationDelegate() 공개 메소드

Construct a delegate that will target the given container with the specified method.
public BaseSerializationDelegate ( UnityEngine.Object methodContainer, string methodName ) : System
methodContainer UnityEngine.Object
methodName string
리턴 System

DoInvoke() 보호된 메소드

Internal helper method to invoke the delegate with the given parameters.
protected DoInvoke ( ) : object
리턴 object

프로퍼티 상세

MethodContainer 공개적으로 프로퍼티

The container that will be used as a context when invoking the method.
public UnityEngine.Object MethodContainer
리턴 UnityEngine.Object

MethodName 공개적으로 프로퍼티

The name of the method that will be invoked on the container.
public string MethodName
리턴 string