Freigeben über


Marshal.GetTypeLibName-Methode: (UCOMITypeLib)

 

Veröffentlicht: Oktober 2016

Hinweis: Diese API ist jetzt veraltet.

Ruft den Namen einer Typbibliothek ab.

Namespace:   System.Runtime.InteropServices
Assembly:  mscorlib (in mscorlib.dll)

Syntax

[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

Parameter

Rückgabewert

Type: System.String

Der Name der Typbibliothek, auf die der pTLB-Parameter zeigt.

Hinweise

Der von dieser Methode zurückgegebene Name ist der Bezeichner, der mit der Library-Anweisung, wie z. B. ADODB für die Microsoft ADO-Typbibliothek verwendet. Der Name ist keinen Dateinamen ein.

Sie können den Namen der Typbibliothek auch abrufen, durch Aufrufen derUCOMITypeInfo.GetDocumentation -Methode und-1 als ersten Parameter übergeben.

Sicherheit

SecurityCriticalAttribute

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

GetDocumentation
GetTypeLibName Überladen
Marshal-Klasse
System.Runtime.InteropServices-Namespace

Zurück zum Anfang