本文整理汇总了C#中ITypeInfo.GetContainingTypeLib方法的典型用法代码示例。如果您正苦于以下问题:C# ITypeInfo.GetContainingTypeLib方法的具体用法?C# ITypeInfo.GetContainingTypeLib怎么用?C# ITypeInfo.GetContainingTypeLib使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ITypeInfo
的用法示例。
在下文中一共展示了ITypeInfo.GetContainingTypeLib方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FromITypeInfo
public ComTypeInfo FromITypeInfo(ITypeInfo typeInfo)
{
if (typeInfo == null) return null;
ITypeLib typeLib = null;
int index = 0;
typeInfo.GetContainingTypeLib(out typeLib, out index);
ComTypeLibrary comTypeLibrary = GetComTypeLibrary(typeLib);
string typeName = Marshal.GetTypeInfoName(typeInfo);
if (comTypeLibrary != null)
{
return comTypeLibrary.ComTypeInfos.Where(
x => x.Name.Equals(typeName)).FirstOrDefault();
}
return null;
}
示例2: AnalyzeTypeInfo
private void AnalyzeTypeInfo(ITypeInfo typeInfo)
{
ITypeLib ppTLB = null;
try
{
int num;
System.Runtime.InteropServices.ComTypes.TYPELIBATTR typelibattr;
System.Runtime.InteropServices.ComTypes.TYPEATTR typeattr;
typeInfo.GetContainingTypeLib(out ppTLB, out num);
ComReference.GetTypeLibAttrForTypeLib(ref ppTLB, out typelibattr);
string key = string.Format(CultureInfo.InvariantCulture, "{0}.{1}.{2}.{3}:{4}", new object[] { typelibattr.guid, typelibattr.wMajorVerNum, typelibattr.wMinorVerNum, typelibattr.lcid, num });
ComReference.GetTypeAttrForTypeInfo(typeInfo, out typeattr);
if (!this.CanSkipType(typeInfo, ppTLB, typeattr, typelibattr))
{
this.dependencies[typelibattr] = null;
if (!this.analyzedTypes.ContainsKey(key))
{
this.analyzedTypes.Add(key, null);
this.ScanImplementedTypes(typeInfo, typeattr);
this.ScanDefinedVariables(typeInfo, typeattr);
this.ScanDefinedFunctions(typeInfo, typeattr);
}
}
else if (!this.analyzedTypes.ContainsKey(key))
{
this.analyzedTypes.Add(key, null);
}
}
finally
{
if (ppTLB != null)
{
this.marshalReleaseComObject(ppTLB);
}
}
}