Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

IInternetProtocolRoot (Interfaces)
 
.
Summary
IInternetProtocolRoot is used to control the operation of an asynchronous pluggable protocol handler.

C# Definition:

[ComImport]
[Guid("79EAC9E3-BAF9-11CE-8C82-00AA004BA90B")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IInternetProtocolRoot {
    [PreserveSig]
    int Start(
      [MarshalAs(UnmanagedType.LPWStr)] string szUrl,
      [MarshalAs(UnmanagedType.Interface)] IInternetProtocolSink protocolSink,
      IInternetBindInfo bindInfo,
      [MarshalAs(UnmanagedType.I4)] int grfPI,
      IntPtr dwReserved);

    [PreserveSig]
    int Continue([In] ref PROTOCOLDATA protocolData);

    [PreserveSig]
    int Abort(int hrReason, int options);

    [PreserveSig]
    int Terminate(int options);

    [PreserveSig]
    int Suspend();

    [PreserveSig]
    int Resume();
}

VB Definition:

<ComImport> _
<Guid("79EAC9E3-BAF9-11CE-8C82-00AA004BA90B")> _
<InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> _
Interface IInternetProtocolRoot
   TODO
End Interface

User-Defined Types:

IInternetProtocol, IInternetProtocolSink, IInternetBindInfo, PROTOCOLDATA

Notes:

None.

Documentation

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • alternate definitions?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions