Show / Hide Table of Contents

Interface IPriorityCallbacks<TCallback>

Namespace: Edgar.Unity
Assembly: cs.temp.dll.dll
Syntax
public interface IPriorityCallbacks<TCallback>
Type Parameters
Name Description
TCallback

Methods

GetCallbacks()

Declaration
List<TCallback> GetCallbacks()
Returns
Type Description
System.Collections.Generic.List<TCallback>

RegisterAfterAll(TCallback)

Declaration
void RegisterAfterAll(TCallback callback)
Parameters
Type Name Description
TCallback callback

RegisterBeforeAll(TCallback)

Declaration
void RegisterBeforeAll(TCallback callback)
Parameters
Type Name Description
TCallback callback

RegisterCallback(Int32, TCallback, Boolean)

Declaration
void RegisterCallback(int priority, TCallback callback, bool replaceExisting = false)
Parameters
Type Name Description
System.Int32 priority
TCallback callback
System.Boolean replaceExisting

RegisterCallbackAfter(Int32, TCallback, Boolean)

Declaration
void RegisterCallbackAfter(int priority, TCallback callback, bool replaceExisting = false)
Parameters
Type Name Description
System.Int32 priority
TCallback callback
System.Boolean replaceExisting

RegisterCallbackBefore(Int32, TCallback, Boolean)

Declaration
void RegisterCallbackBefore(int priority, TCallback callback, bool replaceExisting = false)
Parameters
Type Name Description
System.Int32 priority
TCallback callback
System.Boolean replaceExisting

RegisterCallbackInsteadOf(Int32, TCallback)

Declaration
void RegisterCallbackInsteadOf(int priority, TCallback callback)
Parameters
Type Name Description
System.Int32 priority
TCallback callback
In This Article
Back to top Generated by DocFX