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.
<ComVisible(False)> _
<ComImport()> _
<InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> _
<Guid("00000000-0000-0000-C000-000000000046")> _
Public Interface IUnknown
Function QueryInterface(ByRef riid As Guid) As IntPtr
<PreserveSig()> _
Function AddRef() As Integer
<PreserveSig()> _
Function Release() As Integer
End Interface
User-Defined Types:
None.
Notes:
It is usually not necessary to call IUnknown's methods directly in your .NET code. The interop runtime code will insert the appropriate method calls for reference counting when the managed proxy objects are created and freed, and will translate typecast, "is", and "as" operators into calls to QueryInterface.
None.
Base interface that all other COM interfaces inherit from. Defines the standard reference counting and interface discovery mechanisms for COM objects.
12/23/2011 8:08:31 AM - PJonDevelopment (http---pjondevelopment.50webs.com)-189.25.187.30
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.