C# Class FullInspector.Modules.BaseSerializationDelegate

Afficher le fichier Open project: jacobdufault/fullinspector

Méthodes publiques

Свойство Type Description
MethodContainer UnityEngine.Object
MethodName string

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
DoInvoke ( ) : object

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

Method Details

BaseSerializationDelegate() public méthode

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

BaseSerializationDelegate() public méthode

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
Résultat System

DoInvoke() protected méthode

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

Property Details

MethodContainer public_oe property

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

MethodName public_oe property

The name of the method that will be invoked on the container.
public string MethodName
Résultat string