I am breaking down some previous code i am having to support and was wondering what these events are referring to?
public CodeFormatterExtension()
{
Page.Serving += ServingContent;
Post.Serving += ServingContent;
}
Questions:
Postobject is not recognized in theSystem.Web.UInamespace, so what should i remap this to?Servingevent is not recognized. By signature, it should accept(object, ServingEventArgs), what Page/Post event should it be remapped to?
Lastly, i am unsure what .Net library framework this is coming from as most of it just a collection of code files i am importing into a project to create a controlled dev-environment for such questions.
A web search for
ServiceEventArgspointed me to BlogEngine.NET. No guarantee that it is where your code came from but an example on their site matches yours exactly.