Class MetaRepository
Denotes the repository with the metamodels contained in the loaded assemblies
Inheritance
MetaRepository
Assembly: NMF.Models.dll
public sealed class MetaRepository : IModelRepository
Properties
|
Edit this page
View Source
Declaration
public static MetaRepository Instance { get; }
Property Value
|
Edit this page
View Source
Declaration
public ModelCollection Models { get; }
Property Value
|
Edit this page
View Source
Gets the serializer used for the deserialization of the models
Declaration
public ModelSerializer Serializer { get; }
Property Value
Methods
|
Edit this page
View Source
Declaration
public IModelElement Resolve(string uriString)
Parameters
Type |
Name |
Description |
string |
uriString |
|
Returns
|
Edit this page
View Source
Declaration
public IModelElement Resolve(Uri uri)
Parameters
Type |
Name |
Description |
Uri |
uri |
|
Returns
|
Edit this page
View Source
Resolves the given system type into an NMeta type instance
Declaration
public IType ResolveClass(Type systemType)
Parameters
Type |
Name |
Description |
Type |
systemType |
The system type
|
Returns
Type |
Description |
IType |
The type object
|
Exceptions
|
Edit this page
View Source
Resolves the given uri into a type
Declaration
public IType ResolveType(string uriString)
Parameters
Type |
Name |
Description |
string |
uriString |
The absolute uri
|
Returns
Type |
Description |
IType |
The type object
|
Implements