Click or drag to resize
Cimbalino ToolkitObservableTaskBaseT Class
A basic implementation of INotifyPropertyChanged.
Inheritance Hierarchy

Namespace: Cimbalino.Toolkit.Helpers
Assembly: Cimbalino.Toolkit.Core (in Cimbalino.Toolkit.Core.dll) Version: 2.2.1.0 (2.2.1.0)
Syntax
C#
public abstract class ObservableTaskBase<T> : ObservableBase
where T : Task

Type Parameters

T
The associated task instance type.

The ObservableTaskBaseT type exposes the following members.

Constructors
  NameDescription
Protected methodObservableTaskBaseT
Initializes a new instance of the ObservableTaskBaseT class.
Top
Properties
  NameDescription
Public propertyException
Gets the AggregateException that caused the associated task instance to end prematurely.
Public propertyIsCancelled
Gets a value indicating whether the associated task instance has completed execution due to being canceled.
Public propertyIsCompleted
Gets a value indicating whether the associated task instance has completed.
Public propertyIsFaulted
Gets a value indicating whether the associated task instance has completed execution due to an unhandled exception.
Public propertyStatus
Gets the TaskStatus of the associated task instance.
Public propertyTask
Gets the associated task instance.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(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.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodRaisePropertyChanged(String)
Raises the PropertyChanged event.
(Inherited from ObservableBase.)
Protected methodRaisePropertyChangedT(ExpressionFuncT)
Raises the PropertyChanged event.
(Inherited from ObservableBase.)
Protected methodSetPropertyT(T, T, ExpressionFuncT)
Assigns a new value to a property and raises the PropertyChanged event if the value changed.
(Inherited from ObservableBase.)
Protected methodSetPropertyT(T, T, String)
Assigns a new value to a property and raises the PropertyChanged event if the value changed.
(Inherited from ObservableBase.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Events
  NameDescription
Public eventPropertyChanged
Occurs when a property value changes.
(Inherited from ObservableBase.)
Top
Extension Methods
  NameDescription
Public Extension MethodAddEventHandler
Adds an event handler to an event source.
(Defined by ObjectExtensions.)
Public Extension MethodGetPropertyValue(String)Overloaded.
Searches for the public property with the specified name and gets its value.
(Defined by ObjectExtensions.)
Public Extension MethodGetPropertyValueTObject(String)Overloaded.
Searches for the public property with the specified name and gets its value.
(Defined by ObjectExtensions.)
Public Extension MethodInvokeMethod(String, Object)Overloaded.
Searches for the public method with the specified name and invokes it using the specified parameters.
(Defined by ObjectExtensions.)
Public Extension MethodInvokeMethodTObject(String, Object)Overloaded.
Searches for the public method with the specified name and invokes it using the specified parameters, returning the result.
(Defined by ObjectExtensions.)
Public Extension MethodRemoveEventHandler
Removes an event handler from an event source.
(Defined by ObjectExtensions.)
Public Extension MethodSetPropertyValueTObject
Searches for the public property with the specified name and sets its value.
(Defined by ObjectExtensions.)
Top
Version Information

Portable

Supported in: 4.5

Windows

Supported in: 10.0, 8.1

Windows Phone

Supported in: 8.1

Windows Phone Silverlight

Supported in: 8.1, 8.0
See Also