Never mind I figured it out.
Here it is in case anyone else is interested.
//Get the Type
Type T = dataObj.GetType();
if (T.Name == "SimpleDataClass")
{
SimpleDataClass InsertDataObject = (SimpleDataClass)dataObj;
if (InsertDataObject.ClassName == "Forums.ForumPost")
//Do what you want with a new forum post.
}