FullName
: string
[Get] |
The full assembly name.
Signature
string Meta.Conduit.Editor.IConduitAssembly.FullName |
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.
|