Click or drag to resize

ValidationExceptionItem Class

Validation exception model.
Inheritance Hierarchy
SystemObject
  Xcalibur.Extensions.MVVM.ModelsModelBase
    Xcalibur.Extensions.MVVM.ModelsValidationExceptionItem

Namespace:  Xcalibur.Extensions.MVVM.Models
Assembly:  Xcalibur.Extensions.MVVM (in Xcalibur.Extensions.MVVM.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public class ValidationExceptionItem : ModelBase, 
	IValidationExceptionItem

The ValidationExceptionItem type exposes the following members.

Constructors
  NameDescription
Public methodValidationExceptionItem
Initializes a new instance of the ValidationExceptionItem class
Top
Properties
  NameDescription
Public propertyIdentifier
Gets the identifier.
(Inherited from ModelBase.)
Public propertyIsActive
Gets or sets a value indicating whether this instance is active.
(Inherited from ModelBase.)
Public propertyName
Gets or sets the name.
Public propertyPropertyName
Gets or sets the name of the property.
Public propertyResult
Gets or sets the result.
Top
Methods
  NameDescription
Public methodClearSubscriptions
Clears all subscriptions from the instance.
(Inherited from ModelBase.)
Public methodClearSubscriptions(String, NullableGuid)
Clears subscriptions for a specific property, or if one is not specified; all subscriptions to the instance.
(Inherited from ModelBase.)
Public methodClearSubscriptionsT(ExpressionFuncT, NullableGuid)
Clears subscriptions for a specific property, or if one is not specified; all subscriptions to the instance.
(Inherited from ModelBase.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodCode exampleNotifyOfChangeT(ExpressionFuncT, T, T, Action)
Updates a property directly by comparing values and then firing its OnPropertyChanged event if necessary.
(Inherited from ModelBase.)
Public methodCode exampleNotifyOfChangeT(String, T, T, Action)
Updates a property directly by comparing values and then firing its OnPropertyChanged event if necessary.
(Inherited from ModelBase.)
Public methodCode exampleNotifyOfChangeT(T, T, String, Action)
Updates a property directly by comparing values and then firing its OnPropertyChanged event if necessary.
(Inherited from ModelBase.)
Public methodSubscribe(String, ActionObject, NullableGuid)
Subscribes an action to a specific property that will be called during that property's OnPropertyChanged event.
(Inherited from ModelBase.)
Public methodSubscribeT(ExpressionFuncT, ActionObject, NullableGuid)
Subscribes an action to a specific property that will be called during that property's OnPropertyChanged event.
(Inherited from ModelBase.)
Public methodToString
Returns a String that represents this instance.
(Inherited from ModelBase.)
Public methodCode exampleUpdateProperty(String, Action)
Informs a property that it should invoke its OnPropertyChanged event.
(Inherited from ModelBase.)
Public methodCode exampleUpdatePropertyT(ExpressionFuncT, Action)
Informs a property that it should invoke its OnPropertyChanged event.
(Inherited from ModelBase.)
Top
Events
  NameDescription
Public eventPropertyChanged
Occurs when a property value changes.
(Inherited from ModelBase.)
Top
See Also