ITypeInfo2.cs :  » 2.6.4-mono-.net-core » System.Runtime » System » Runtime » InteropServices » ComTypes » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Runtime 
System.Runtime » System » Runtime » InteropServices » ComTypes » ITypeInfo2.cs
//
// System.Runtime.InteropServices.ComTypes.ITypeInfo2.cs
//
// Author:
//   Kazuki Oikawa (kazuki@panicode.com)
//

using System;

namespace System.Runtime.InteropServices.ComTypes{
  [ComImport]
  [Guid("00020412-0000-0000-C000-000000000046")]
  [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  public interface ITypeInfo2 : ITypeInfo
  {
    new void AddressOfMember (int memid, INVOKEKIND invKind, out IntPtr ppv);
    new void CreateInstance ([MarshalAs (UnmanagedType.IUnknown)] object pUnkOuter, [In] ref Guid riid, [MarshalAs (UnmanagedType.IUnknown)] out object ppvObj);
    new void GetContainingTypeLib (out ITypeLib ppTLB, out int pIndex);
    new void GetDllEntry (int memid, INVOKEKIND invKind, IntPtr pBstrDllName, IntPtr pBstrName, IntPtr pwOrdinal);
    new void GetDocumentation (int index, out string strName, out string strDocString, out int dwHelpContext, out string strHelpFile);
    new void GetIDsOfNames ([In, MarshalAs(UnmanagedType.LPArray, ArraySubType = (UnmanagedType.LPWStr), SizeParamIndex=1)] string[] rgszNames, int cNames, [Out, MarshalAs (UnmanagedType.LPArray, SizeParamIndex=1)] int[] pMemId);

    new void GetImplTypeFlags (int index, out IMPLTYPEFLAGS pImplTypeFlags);
    void GetTypeKind (out TYPEKIND pTypeKind);
    void GetTypeFlags (out int pTypeFlags);
    new void GetFuncDesc (int index, out IntPtr ppFuncDesc);
    new void GetMops (int memid, out string pBstrMops);
    new void GetNames (int memid, [Out, MarshalAs (UnmanagedType.LPArray, SizeParamIndex=2)] string[] rgBstrNames, int cMaxNames, out int pcNames);
    new void GetRefTypeInfo (int hRef, out ITypeInfo ppTI);
    new void GetRefTypeOfImplType (int index, out int href);
    new void GetTypeAttr (out IntPtr ppTypeAttr);
    new void GetTypeComp (out ITypeComp ppTComp);
    new void GetVarDesc (int index, out IntPtr ppVarDesc);
    void GetFuncIndexOfMemId (int memid, INVOKEKIND invKind, out int pFuncIndex);
    void GetVarIndexOfMemId (int memid, out int pVarIndex);
    void GetCustData (ref Guid guid, out object pVarVal);
    void GetFuncCustData(int index, ref Guid guid, out object pVarVal);
    void GetParamCustData(int indexFunc, int indexParam, ref Guid guid, out object pVarVal);
    void GetVarCustData(int index, ref Guid guid, out object pVarVal);
    void GetImplTypeCustData(int index, ref Guid guid, out object pVarVal);
    [LCIDConversion (1)]
    void GetDocumentation2(int memid, out string pbstrHelpString, out int pdwHelpStringContext, out string pbstrHelpStringDll);
    void GetAllCustData(IntPtr pCustData);
    void GetAllFuncCustData(int index, IntPtr pCustData);
    void GetAllParamCustData(int indexFunc, int indexParam, IntPtr pCustData);
    void GetAllVarCustData(int index, IntPtr pCustData);
    void GetAllImplTypeCustData(int index, IntPtr pCustData);
    new void Invoke ([MarshalAs (UnmanagedType.IUnknown)] object pvInstance, int memid, short wFlags, ref DISPPARAMS pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, out int puArgErr);
    [PreserveSig]
    new void ReleaseTypeAttr (IntPtr pTypeAttr);
    [PreserveSig]
    new void ReleaseFuncDesc (IntPtr pFuncDesc);
    [PreserveSig]
    new void ReleaseVarDesc (IntPtr pVarDesc);
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.