Table of Contents

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 Uri

The uri that could not be resolved

UnresolvedModelElementEventArgs(Uri, string)

Creates a new instance

public UnresolvedModelElementEventArgs(Uri uri, string hintPath)

Parameters

uri Uri

The uri that could not be resolved

hintPath string

A hint path, if available

UnresolvedModelElementEventArgs(Uri, string, Exception)

Creates a new instance

public UnresolvedModelElementEventArgs(Uri uri, string hintPath, Exception loadException)

Parameters

uri Uri

The uri that could not be resolved

hintPath string

A hint path, if available

loadException Exception

Exception that happened during model loading, if any

Properties

HintPath

A hint path

public string HintPath { get; }

Property Value

string

LoadException

Exception while model was loaded, if any

public Exception LoadException { get; }

Property Value

Exception

ModelElement

Gets or sets the model element that was identified during the event

public IModelElement ModelElement { get; set; }

Property Value

IModelElement

Uri

The Uri that could not be resolved

public Uri Uri { get; }

Property Value

Uri