Marshal.GetTypeLibGuid Method (UCOMITypeLib)
NOTE: This API is now obsolete.
Retrieves the library identifier (LIBID) of a type library.
Assembly: mscorlib (in mscorlib.dll)
[ObsoleteAttribute("Use System.Runtime.InteropServices.Marshal.GetTypeLibGuid(ITypeLib pTLB) instead. http://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.", false)] [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.UnmanagedCode)] public static Guid GetTypeLibGuid( UCOMITypeLib pTLB )
Parameters
- pTLB
- Type: System.Runtime.InteropServices.UCOMITypeLib
A UCOMITypeLib that represents an ITypeLib pointer.
Return Value
Type: System.GuidThe LIBID (that is, the Guid) of the type library pointed to by the pTLB parameter.
GetTypeLibGuid extracts the LIBID directly from an existing type library. This action differs from that of the Marshal.GetTypeLibGuidForAssembly method, which calculates what the LIBID should be based on the current assembly. For additional information about ITypeLib, see the MSDN Library.
Note: |
|---|
This method uses SecurityAction.LinkDemand to prevent it from being called from untrusted code; only the immediate caller is required to have SecurityPermissionAttribute.UnmanagedCode permission. If your code can be called from partially trusted code, do not pass user input to Marshal class methods without validation. For important limitations on using the LinkDemand member, see Demand vs. LinkDemand. |
- SecurityPermission
for permission to call unmanaged code.
Associated enumeration: UnmanagedCode Security action: LinkDemand
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 1.1, 1.0Obsolete (compiler warning) in 3.5
Obsolete (compiler warning) in 3.5 SP1
Obsolete (compiler warning) in 3.0
Obsolete (compiler warning) in 3.0 SP1
Obsolete (compiler warning) in 3.0 SP2
Obsolete (compiler warning) in 2.0
Obsolete (compiler warning) in 2.0 SP1
Obsolete (compiler warning) in 2.0 SP2
Note: