C# Класс FullInspector.Modules.BaseSerializationDelegate

Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
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