Interface
|
Abstract
|
Declare
With keyword “Interface”
|
Declare
with keyword “Abstract”
|
A
class may inherit several interfaces.
|
A
class may inherit only one
abstract class.
|
An
interface cannot provide any code, just the signature.
|
An
abstract class can provide complete, default code and/or just the details
that have to be overridden.
|
No
fields can be defined in interfaces
|
An
abstract class can have fields and constrants defined
|
An
interface cannot have access modifiers for the subs, functions, properties
etc everything is assumed as public
|
An
abstract class can contain access modifiers for the subs, functions,
properties
|
It can come in inheritance chain
|
In that this is not come in inheritance chain
|
Slower
|
Faster
|
It will
not contain constructor
|
It will may or may not constructor
|
It
will only contain final variable
|
It will contain Final and instance variable
|
If you want to implement pre-processing logic before a request hits the IIS resources. For instance you would like to apply security mechanism, URL rewriting, filter something in the request, etc. ASP.NET has provided two types of interception HttpModule and HttpHandler . The web server examines the file name extension of the requested file, and determines which ISAPI extension should handle the request. Then the request is passed to the appropriate ISAPI extension. For Example When an .aspx page is requested it is passed to ASP.Net page handler. Then Application domain is created and after that different ASP.Net objects like Httpcontext, HttpRequest, HttpResponse. HTTPModule: - It's just like a filter. The Modules are called before and after the handler executes . - HTTP Modules are objects which also participate the pipeline but they work before and after the HTTP Handler does its job, and produce additional serv...
The modifier 'abstract' is not valid on fields. Try using a property instead.
ReplyDelete