This class provides basic functionality used to parse web handler
files. It is used by the .NET framework, not directly by your own
code.
public abstract class SimpleWebHandlerParser {
// Protected Constructors
protected SimpleWebHandlerParser(System.Web.HttpContext context, string virtualPath, string physicalPath);
// Protected Instance Properties
protected abstract string DefaultDirectiveName{get; }
// Protected Instance Methods
protected Type GetCompiledTypeFromCache( );
}