Interface IException
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
ElementInError
The elementInError property
[XmlElementName("elementInError")]
[XmlAttribute(true)]
IElement ElementInError { get; set; }
Property Value
ObjectInError
The objectInError property
[XmlElementName("objectInError")]
[XmlAttribute(true)]
IElement ObjectInError { get; set; }
Property Value
Events
DescriptionChanged
Gets fired when the Description property changed its value
event EventHandler<ValueChangedEventArgs> DescriptionChanged
Event Type
DescriptionChanging
Gets fired before the Description property changes its value
event EventHandler<ValueChangedEventArgs> DescriptionChanging
Event Type
ElementInErrorChanged
Gets fired when the ElementInError property changed its value
event EventHandler<ValueChangedEventArgs> ElementInErrorChanged
Event Type
ElementInErrorChanging
Gets fired before the ElementInError property changes its value
event EventHandler<ValueChangedEventArgs> ElementInErrorChanging
Event Type
ObjectInErrorChanged
Gets fired when the ObjectInError property changed its value
event EventHandler<ValueChangedEventArgs> ObjectInErrorChanged
Event Type
ObjectInErrorChanging
Gets fired before the ObjectInError property changes its value
event EventHandler<ValueChangedEventArgs> ObjectInErrorChanging