API reference
API reference
Select your platform
No SDKs available
No versions available

IConduitAssembly Interface

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

Properties

FullName : string
[Get]
The full assembly name.
Signature
string Meta.Conduit.Editor.IConduitAssembly.FullName

Methods

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