Try our conversational search powered by Generative AI!

Event On Block Deleted

Vote:
 

Hello,

 

I have a InitializeModule and I am able to handle an event on page deleted. I also see that they have an event on DeletedContent. But the DeleteContentEventArgs have a property Content but the BlockData doesn't inherit from it.

 

Regards,

 

Benjamin

#79618
Dec 23, 2013 9:13
Vote:
 

The Content property is IContent, which you can cast to your type. E.g.:

var block = e.Content as YourBlockData;

if (block != null)
{
    // Do something
}

Or just BlockData:

var block = e.Content as BlockData;

if (block != null)
{
    // Do something
}

    

 

#79651
Edited, Dec 27, 2013 4:07
This thread is locked and should be used for reference only. Please use the Episerver CMS 7 and earlier versions forum to open new discussions.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.