Faith BOY,
It depends on where you are going to use it. If you are going to use it
strictly in a .NET environment, then you will want to extend the WebRequest
and WebResponse classes. These are the base classes used in .NET to handle
resource acquisition where the resource's location is defined by a URL.
However, if you are looking to plug into the COM infrastructure, so that
things like Internet Explorer will download your content using your scheme,
then you will have to use Asynchronous Pluggable Protocols. For more
information, check out the section of the MSDN documentation titled
"Asycnhronous Pluggable Protocols", located at (watch for line wrap):
http://msdn.microsoft.com/library/default.asp?url=/workshop/networking/pluggable/pluggable.asp
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)
Fatih BOY said:
Hi,
How can i register my own protocol like app-help://somepage.html which
searchs typed files under a predefined folder (like document folder under
installation root) ?
Fatih BOY