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
uriUriThe 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
uriUriThe uri that could not be resolved
hintPathstringA hint path, if available
loadExceptionExceptionException 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; }