API reference

IConduitAssembly Interface

Wrapper for assemblies to provide convenience methods and abstract from CLR.

Overview

Properties

string
The full assembly name.

Public Member Functions

IEnumerable< Type >
Returns all types in the assembly that are enums.
IEnumerable< MethodInfo >
Returns all the methods in the assembly.
Type
GetType
( string name )
Returns the type of the given name from the assembly.

Details

Properties

string Meta.Conduit.Editor.IConduitAssembly.FullName
The full assembly name.

Member Functions

IEnumerable<Type> Meta.Conduit.Editor.IConduitAssembly.GetEnumTypes ( )
Returns all types in the assembly that are enums.
Returns
The enum types.
IEnumerable<MethodInfo> Meta.Conduit.Editor.IConduitAssembly.GetMethods ( )
Returns all the methods in the assembly.
Returns
The methods.
Type Meta.Conduit.Editor.IConduitAssembly.GetType
( string name )
Returns the type of the given name from the assembly.
Parameters
name
The type name.
Returns
The type.