Exemplo n.º 1
0
        public async Task ModifyOriginalMessage()
        {
            // Create the new message properties
            MessageProperties newProperties = CreateMessageProperties();

            // Modify the target message
            await TargetMessage.ModifyAsync(properties =>
            {
                properties.Content = newProperties.Content;
                properties.Embed   = newProperties.Embed;
            });
        }