Class UnresolvedModelElementEventArgs
- Namespace
- NMF.Models.Repository
- Assembly
- NMF.Models.dll
Denotes the event data that a model element could not be resolved
public class UnresolvedModelElementEventArgs : EventArgs
- Inheritance
-
UnresolvedModelElementEventArgs
- Inherited Members
Constructors
UnresolvedModelElementEventArgs(Uri)
Creates a new instance
public UnresolvedModelElementEventArgs(Uri uri)
Parameters
uri
UriThe uri that could not be resolved
UnresolvedModelElementEventArgs(Uri, string)
Creates a new instance
public UnresolvedModelElementEventArgs(Uri uri, string hintPath)
Parameters
UnresolvedModelElementEventArgs(Uri, string, Exception)
Creates a new instance
public UnresolvedModelElementEventArgs(Uri uri, string hintPath, Exception loadException)
Parameters
uri
UriThe uri that could not be resolved
hintPath
stringA hint path, if available
loadException
ExceptionException that happened during model loading, if any
Properties
HintPath
A hint path
public string HintPath { get; }
Property Value
LoadException
Exception while model was loaded, if any
public Exception LoadException { get; }
Property Value
ModelElement
Gets or sets the model element that was identified during the event
public IModelElement ModelElement { get; set; }
Property Value
Uri
The Uri that could not be resolved
public Uri Uri { get; }