当前位置: 首页>>代码示例>>C#>>正文


C# ITypeInfo.GetDocumentation方法代码示例

本文整理汇总了C#中ITypeInfo.GetDocumentation方法的典型用法代码示例。如果您正苦于以下问题:C# ITypeInfo.GetDocumentation方法的具体用法?C# ITypeInfo.GetDocumentation怎么用?C# ITypeInfo.GetDocumentation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ITypeInfo的用法示例。


在下文中一共展示了ITypeInfo.GetDocumentation方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ComTypeInfo

 public ComTypeInfo(ComTypeLibrary comTypeLibrary, ITypeInfo typeInfo, IntPtr pTypeAttr)
 {
     _comTypeLibrary = comTypeLibrary;
     _typeInfo = typeInfo;
     _pTypeAttr = pTypeAttr;
     _typeAttr = _pTypeAttr.ToStructure<System.Runtime.InteropServices.ComTypes.TYPEATTR>();
     _typeInfo.GetDocumentation(-1, out _name, out _description, out _helpContext, out _helpFile);
 }
开发者ID:JWSingleton,项目名称:SolidEdgeSpy,代码行数:8,代码来源:ComTypeInfo.cs

示例2: CanSkipType

 private bool CanSkipType(ITypeInfo typeInfo, ITypeLib typeLib, System.Runtime.InteropServices.ComTypes.TYPEATTR typeAttributes, System.Runtime.InteropServices.ComTypes.TYPELIBATTR typeLibAttributes)
 {
     if (((typeAttributes.guid == Microsoft.Build.Tasks.NativeMethods.IID_IUnknown) || (typeAttributes.guid == Microsoft.Build.Tasks.NativeMethods.IID_IDispatch)) || (((typeAttributes.guid == Microsoft.Build.Tasks.NativeMethods.IID_IDispatchEx) || (typeAttributes.guid == Microsoft.Build.Tasks.NativeMethods.IID_IEnumVariant)) || (typeAttributes.guid == Microsoft.Build.Tasks.NativeMethods.IID_ITypeInfo)))
     {
         return true;
     }
     if (typeLibAttributes.guid == Microsoft.Build.Tasks.NativeMethods.IID_StdOle)
     {
         string str;
         string str2;
         string str3;
         int num;
         typeInfo.GetDocumentation(-1, out str, out str2, out num, out str3);
         if (string.CompareOrdinal(str, "GUID") == 0)
         {
             return true;
         }
     }
     ITypeLib2 lib = typeLib as ITypeLib2;
     if (lib != null)
     {
         object obj2;
         lib.GetCustData(ref Microsoft.Build.Tasks.NativeMethods.GUID_ExportedFromComPlus, out obj2);
         string str4 = obj2 as string;
         if (!string.IsNullOrEmpty(str4))
         {
             return true;
         }
     }
     return false;
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:31,代码来源:ComDependencyWalker.cs

示例3: GetNameFromFuncDesc

 internal static string GetNameFromFuncDesc(ITypeInfo typeinfo, System.Runtime.InteropServices.ComTypes.FUNCDESC funcdesc)
 {
     string str;
     string str2;
     string str3;
     int num;
     typeinfo.GetDocumentation(funcdesc.memid, out str, out str2, out num, out str3);
     return str;
 }
开发者ID:nickchal,项目名称:pash,代码行数:9,代码来源:ComUtil.cs


注:本文中的ITypeInfo.GetDocumentation方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。