Table of Contents

Interface IException

Namespace
NMF.Interop.Cmof
Assembly
NMF.UMLInterop.dll

The public interface for Exception

[DefaultImplementationType(typeof(Exception))]
[XmlDefaultImplementationType(typeof(Exception))]
[ModelRepresentationClass("http://www.omg.org/spec/MOF/20131001/cmof.xmi#//Exception")]
public interface IException : IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
Inherited Members

Properties

Description

The description property

[XmlElementName("description")]
[XmlAttribute(true)]
string Description { get; set; }

Property Value

string

ElementInError

The elementInError property

[XmlElementName("elementInError")]
[XmlAttribute(true)]
IElement ElementInError { get; set; }

Property Value

IElement

ObjectInError

The objectInError property

[XmlElementName("objectInError")]
[XmlAttribute(true)]
IElement ObjectInError { get; set; }

Property Value

IElement

Events

DescriptionChanged

Gets fired when the Description property changed its value

event EventHandler<ValueChangedEventArgs> DescriptionChanged

Event Type

EventHandler<ValueChangedEventArgs>

DescriptionChanging

Gets fired before the Description property changes its value

event EventHandler<ValueChangedEventArgs> DescriptionChanging

Event Type

EventHandler<ValueChangedEventArgs>

ElementInErrorChanged

Gets fired when the ElementInError property changed its value

event EventHandler<ValueChangedEventArgs> ElementInErrorChanged

Event Type

EventHandler<ValueChangedEventArgs>

ElementInErrorChanging

Gets fired before the ElementInError property changes its value

event EventHandler<ValueChangedEventArgs> ElementInErrorChanging

Event Type

EventHandler<ValueChangedEventArgs>

ObjectInErrorChanged

Gets fired when the ObjectInError property changed its value

event EventHandler<ValueChangedEventArgs> ObjectInErrorChanged

Event Type

EventHandler<ValueChangedEventArgs>

ObjectInErrorChanging

Gets fired before the ObjectInError property changes its value

event EventHandler<ValueChangedEventArgs> ObjectInErrorChanging

Event Type

EventHandler<ValueChangedEventArgs>