DebugDatabase GetComplexTypeLink Method Fling OS
Gets the specified complex type link from the database.

To Do's: See GetMethod(String)'s to do's.

Namespace: Kernel.Debug.Data
Assembly: Kernel.Debug.Data (in Kernel.Debug.Data.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public static DB_ComplexTypeLink GetComplexTypeLink(
	Guid aComplexTypeLinkID
)

Parameters

aComplexTypeLinkID
Type: System Guid
The ID of the entry to get.

Return Value

Type: DB_ComplexTypeLink
The database complex type link if found. Otherwise null.
Remarks

This is an exception-safe method so if you try to request an ID that isn't in the database, it won't throw an exception. Instead it will return null.

The return value of this method can be cached because the debug database used is a static instance so exceptions will not occur if you modify values etc.

See Also