| AssetLoadHelperFixupT Method |
Wraps and registers a fix-up action.
Namespace: DigitalRune.Graphics.ContentAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public Action<T> Fixup<T>(
Action<T> fixup
)
Public Function Fixup(Of T) (
fixup As Action(Of T)
) As Action(Of T)
public:
generic<typename T>
Action<T>^ Fixup(
Action<T>^ fixup
)
member Fixup :
fixup : Action<'T> -> Action<'T>
Parameters
- fixup
- Type: SystemActionT
The fix-up action.
Type Parameters
- T
- The type of the shared resource.
Return Value
Type:
ActionTA new action that will call the fix-up action.
See Also