C# Class CsDebugScript.Engine.UserTypeMetadata

Exibir arquivo Open project: southpolenator/WinDbgCs Class Usage Examples

Public Methods

Method Description
ConvertToDescription ( ) : UserTypeDescription

Converts metadata to description using the current process.

ConvertToDescription ( Process process ) : UserTypeDescription

Converts metadata to description.

ReadFromType ( Type type ) : CsDebugScript.Engine.UserTypeMetadata[]

Reads metadata from the type.

UserTypeMetadata ( string moduleName, string typeName, Type type ) : System

Initializes a new instance of the UserTypeMetadata class.

Private Methods

Method Description
IsDerivedFrom ( Type type, Type derivedType ) : bool

Determines whether type is derived from the specified type.

Method Details

ConvertToDescription() public method

Converts metadata to description using the current process.
public ConvertToDescription ( ) : UserTypeDescription
return UserTypeDescription

ConvertToDescription() public method

Converts metadata to description.
public ConvertToDescription ( Process process ) : UserTypeDescription
process Process The process.
return UserTypeDescription

ReadFromType() public static method

Reads metadata from the type.
public static ReadFromType ( Type type ) : CsDebugScript.Engine.UserTypeMetadata[]
type System.Type The type.
return CsDebugScript.Engine.UserTypeMetadata[]

UserTypeMetadata() public method

Initializes a new instance of the UserTypeMetadata class.
public UserTypeMetadata ( string moduleName, string typeName, Type type ) : System
moduleName string Name of the module.
typeName string Name of the type.
type System.Type The type.
return System