Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TMulticastScriptDelegate
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool Contains
(
const TScriptDelegate< ThreadSafetyMode >& InDelegate |
Checks whether a function delegate is already a member of this multi-cast delegate's invocation list | UObject/ScriptDelegates.h | |
bool Contains
(
const TScriptDelegate< OtherThreadSafetyMode >& InDelegate |
UObject/ScriptDelegates.h | ||
| Checks whether a function delegate is already a member of this multi-cast delegate's invocation list | UObject/ScriptDelegates.h |
Contains(const TScriptDelegate< ThreadSafetyMode > &)
Description
Checks whether a function delegate is already a member of this multi-cast delegate's invocation list
| Name | Contains |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/UObject/ScriptDelegates.h |
| Include Path | #include "UObject/ScriptDelegates.h" |
bool Contains
(
const TScriptDelegate < ThreadSafetyMode > & InDelegate
) const
True if the delegate is already in the list.
Parameters
| Name | Remarks |
|---|---|
| InDelegate | Delegate to check |
Contains(const TScriptDelegate< OtherThreadSafetyMode > &)
| Name | Contains |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/UObject/ScriptDelegates.h |
| Include Path | #include "UObject/ScriptDelegates.h" |
template<typename OtherThreadSafetyMode, std::enable_if_t<(UE::Core::Private::BackwardCompatibilityCheck< InThreadSafetyMode, OtherThreadSafetyMode >()), int >>
bool Contains
(
const TScriptDelegate < OtherThreadSafetyMode > & InDelegate
) const
Contains(const UObject *, FName)
Description
Checks whether a function delegate is already a member of this multi-cast delegate's invocation list
| Name | Contains |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/UObject/ScriptDelegates.h |
| Include Path | #include "UObject/ScriptDelegates.h" |
bool Contains
(
const UObject * InObject,
FName InFunctionName
) const
True if the delegate is already in the list.
Parameters
| Name | Remarks |
|---|---|
| InObject | Object of the delegate to check |
| InFunctionName | Function name of the delegate to check |