Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Interfaces, prefix the name with the module name and a period.
<ComImport(),
Guid("6d5140c1-7436-11ce-8034-00aa006009fa"),
<ComImport(), _
Guid("6d5140c1-7436-11ce-8034-00aa006009fa"), _
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> _
Interface IServiceProvider
Sub QueryService(ByRef guidService As Guid, ByRef riid As Guid,
<MarshalAs(UnmanagedType.Interface)> ByRef ppvObject As Object)
End Interface
Interface IServiceProvider
Sub QueryService(<[In]()> ByVal guidService As Guid, _
<[In]()> ByVal riid As Guid, _
<Out(), MarshalAs(UnmanagedType.Interface)> ByVal ppvObject As Object)
End Interface
User-Defined Types:
None.
Notes:
The IServiceProvider defined here is different with "System.IServiceProvider". To remove name collisition, rename "IServiceProvider" to other name such as "UCOMIServiceProvider". Otherwise, you should use fully qualified namespace to the interface since you will normally use "using System" directive.
The QueryService above does not work for me: ppvObject is always marshalled as IUnknown, as documented in the .Net API docs. I use the following: