C# Class FullInspector.Modules.BaseSerializationDelegate

Mostrar archivo Open project: jacobdufault/fullinspector

Public Properties

Property Type Description
MethodContainer UnityEngine.Object
MethodName string

Public Methods

Method Description
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.

Protected Methods

Method Description
DoInvoke ( ) : object

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

Method Details

BaseSerializationDelegate() public method

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

BaseSerializationDelegate() public method

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
return System

DoInvoke() protected method

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

Property Details

MethodContainer public_oe property

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

MethodName public_oe property

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