Stream Chat Unreal SDK
Loading...
Searching...
No Matches
ResendMessageContextMenuAction.h
1// Copyright 2026 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "ContextMenu/ContextMenuAction.h"
6#include "CoreMinimal.h"
7
8#include "ResendMessageContextMenuAction.generated.h"
9
19UCLASS()
20class STREAMCHATUI_API UResendMessageContextMenuAction final : public UContextMenuAction
21{
22 GENERATED_BODY()
23
24public:
26
27protected:
28 virtual void OnPerform(const FMessage&, UWidget* OwningWidget) override;
29 virtual bool OnShouldDisplay(EMessageSide, const FMessage&) const override;
30};
Message action which sends a moderation-bounced message again, unchanged.
Definition ResendMessageContextMenuAction.h:21
Represents a Stream Chat message.
Definition Message.h:70