Marshal.GetTypeLibGuid-Methode: (UCOMITypeLib)
Veröffentlicht: Oktober 2016
Hinweis: Diese API ist jetzt veraltet.
Ruft die Bibliothek-ID (LIBID) einer Typbibliothek ab.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (in mscorlib.dll)
Syntax
[SecurityCriticalAttribute]
[ObsoleteAttribute("Use System.Runtime.InteropServices.Marshal.GetTypeLibGuid(ITypeLib pTLB) instead. https://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.",
false)]
public static Guid GetTypeLibGuid(
UCOMITypeLib pTLB
)
public:
[SecurityCriticalAttribute]
[ObsoleteAttribute("Use System.Runtime.InteropServices.Marshal.GetTypeLibGuid(ITypeLib pTLB) instead. https://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.",
false)]
static Guid GetTypeLibGuid(
UCOMITypeLib^ pTLB
)
[<SecurityCriticalAttribute>]
[<ObsoleteAttribute("Use System.Runtime.InteropServices.Marshal.GetTypeLibGuid(ITypeLib pTLB) instead. https://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.",
false)>]
static member GetTypeLibGuid :
pTLB:UCOMITypeLib -> Guid
<SecurityCriticalAttribute>
<ObsoleteAttribute("Use System.Runtime.InteropServices.Marshal.GetTypeLibGuid(ITypeLib pTLB) instead. https://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.",
False)>
Public Shared Function GetTypeLibGuid (
pTLB As UCOMITypeLib
) As Guid
Parameter
pTLB
Type: System.Runtime.InteropServices.UCOMITypeLibDie Typbibliothek, deren LIBID abgerufen werden soll.
Rückgabewert
Type: System.Guid
Die LIBID der Typbibliothek, auf die der pTLB-Parameter zeigt.
Hinweise
GetTypeLibGuid extrahiert die LIBID direkt aus einer vorhandenen Typbibliothek. Diese Aktion unterscheidet sich von der Marshal.GetTypeLibGuidForAssembly -Methode, die die LIBID berechnet auf Grundlage der aktuellen Assembly.
Weitere Informationen zu Bibliothek-IDs finden Sie unter Exported Assembly Conversion.
Sicherheit
requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.
Versionsinformationen
.NET Framework
Verfügbar seit 1.1
Siehe auch
GetTypeLibGuidForAssembly
UCOMITypeLib
GetTypeLibGuid Überladen
Marshal-Klasse
System.Runtime.InteropServices-Namespace
Zurück zum Anfang