Método Marshal.GetTypeLibName (UCOMITypeLib)
Dica
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience.
Observação: Esta API agora está obsoleta.
Recupera o nome de uma biblioteca de tipos.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (em mscorlib.dll)
Sintaxe
[SecurityCriticalAttribute]
[ObsoleteAttribute("Use System.Runtime.InteropServices.Marshal.GetTypeLibName(ITypeLib pTLB) instead. https://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.",
false)]
public static string GetTypeLibName(
UCOMITypeLib pTLB
)
public:
[SecurityCriticalAttribute]
[ObsoleteAttribute("Use System.Runtime.InteropServices.Marshal.GetTypeLibName(ITypeLib pTLB) instead. https://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.",
false)]
static String^ GetTypeLibName(
UCOMITypeLib^ pTLB
)
[<SecurityCriticalAttribute>]
[<ObsoleteAttribute("Use System.Runtime.InteropServices.Marshal.GetTypeLibName(ITypeLib pTLB) instead. https://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.",
false)>]
static member GetTypeLibName :
pTLB:UCOMITypeLib -> string
<SecurityCriticalAttribute>
<ObsoleteAttribute("Use System.Runtime.InteropServices.Marshal.GetTypeLibName(ITypeLib pTLB) instead. https://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.",
False)>
Public Shared Function GetTypeLibName (
pTLB As UCOMITypeLib
) As String
Parâmetros
pTLB
Type: System.Runtime.InteropServices.UCOMITypeLibA biblioteca de tipos cujo nome deve ser recuperado.
Valor Retornado
Type: System.String
O nome da biblioteca de tipos para a qual o parâmetro pTLB aponta.
Comentários
O nome retornado por esse método é o identificador usado com a instrução de biblioteca, como ADODB para a biblioteca de tipos do Microsoft ADO. O nome não é um nome de arquivo.
Você também pode recuperar o nome da biblioteca de tipo chamando oUCOMITypeInfo.GetDocumentation método e passando -1 para o primeiro parâmetro.
Segurança
requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.
Informações de Versão
.NET Framework
Disponível desde 1.1
Confira Também
GetDocumentation
GetTypeLibName Sobrecarga
Classe Marshal
Namespace System.Runtime.InteropServices
Retornar ao início