Interface SerializationUtils.IGenericMethodFactory
Used by InvokeGenericMethodWrapper to define the method by which generic method delegates are provided
Namespace: Unity.RuntimeSceneSerialization
Syntax
public interface IGenericMethodFactory
Methods
GetGenericMethod<T>()
Get a method which returns void and has a single argument of type T
Declaration
Action<T> GetGenericMethod<T>()
where T : Object
Returns
Type | Description |
---|---|
Action<T> | The method, which will be invoked by InvokeGenericMethodWrapper |
Type Parameters
Name | Description |
---|---|
T | The specific |