BackgroundCommand Class

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Inheritance Hierarchy

System.Object
  Microsoft.TeamFoundation.MVVM.NotifyPropertyChangedDispatcherObject
    Microsoft.TeamFoundation.MVVM.BackgroundCommand

Namespace:  Microsoft.TeamFoundation.MVVM
Assembly:  Microsoft.TeamFoundation.Controls (in Microsoft.TeamFoundation.Controls.dll)

Syntax

'Declaration
Public MustInherit Class BackgroundCommand _
    Inherits NotifyPropertyChangedDispatcherObject _
    Implements IOwnedCommand, ICommand
public abstract class BackgroundCommand : NotifyPropertyChangedDispatcherObject, 
    IOwnedCommand, ICommand
public ref class BackgroundCommand abstract : public NotifyPropertyChangedDispatcherObject, 
    IOwnedCommand, ICommand
[<AbstractClass>]
type BackgroundCommand =  
    class 
        inherit NotifyPropertyChangedDispatcherObject 
        interface IOwnedCommand 
        interface ICommand 
    end
public abstract class BackgroundCommand extends NotifyPropertyChangedDispatcherObject implements IOwnedCommand, ICommand

The BackgroundCommand type exposes the following members.

Constructors

  Name Description
Public method BackgroundCommand()
Public method BackgroundCommand(Dispatcher)

Top

Properties

  Name Description
Public property Dispatcher Dispatcher associated with this object. (Inherited from NotifyPropertyChangedDispatcherObject.)
Public property IsBusy

Top

Methods

  Name Description
Protected method AddDependencySource(String, INotifyCollectionChanged) (Inherited from NotifyPropertyChangedDispatcherObject.)
Protected method AddDependencySource(String, INotifyPropertyChanged) (Inherited from NotifyPropertyChangedDispatcherObject.)
Public method Cancel
Public method CanExecute
Public method CheckAccessBeginExecute Executes the specified action on a thread associated with object's dispatcher. This invokes a BeginInvoke on the Dispatcher, does not wait for the action to complete -- returns immediately. (Inherited from NotifyPropertyChangedDispatcherObject.)
Public method CheckAccessExecute(Action) Executes the specified action on a thread associated with object's dispatcher. (Inherited from NotifyPropertyChangedDispatcherObject.)
Public method CheckAccessExecute<TResult>(Func<TResult>) Executes the specified action on a thread associated with object's dispatcher. (Inherited from NotifyPropertyChangedDispatcherObject.)
Protected method CreateWorkerArgument
Protected method DoBackgroundWork
Public method Equals Determines whether the specified object is equal to the current object. (Inherited from Object.)
Public method Execute
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Protected method GetDependencySourceName(INotifyCollectionChanged) (Inherited from NotifyPropertyChangedDispatcherObject.)
Protected method GetDependencySourceName(INotifyPropertyChanged) (Inherited from NotifyPropertyChangedDispatcherObject.)
Public method GetHashCode Serves as the default hash function. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Protected method OnBackgroundWorkCompleted
Protected method PreExecuteValidate
Public method RaiseCanExecuteChanged
Protected method RaisePropertyChanged Raises PropertyChanged event. This method can only be called on the thread associated with this object's dispatcher. (Inherited from NotifyPropertyChangedDispatcherObject.)
Protected method ReceiveWeakEvent (Inherited from NotifyPropertyChangedDispatcherObject.)
Protected method RemoveDependencySource(String, INotifyCollectionChanged) (Inherited from NotifyPropertyChangedDispatcherObject.)
Protected method RemoveDependencySource(String, INotifyPropertyChanged) (Inherited from NotifyPropertyChangedDispatcherObject.)
Protected method SetAndRaisePropertyChanged(Boolean, Boolean, String) A helper method that sets property value and raises PropertyChanged event if the value has changed. Optimized implementation for System.Boolean type. (Inherited from NotifyPropertyChangedDispatcherObject.)
Protected method SetAndRaisePropertyChanged(Int32, Int32, String) A helper method that sets property value and raises PropertyChanged event if the value has changed. Optimized implementation for System.Int32 type. (Inherited from NotifyPropertyChangedDispatcherObject.)
Protected method SetAndRaisePropertyChanged(String, String, String) A helper method that sets property value and raises PropertyChanged event if the value has changed. Optimized implementation for string type. (Inherited from NotifyPropertyChangedDispatcherObject.)
Protected method SetAndRaisePropertyChanged<T>(T, T, String) A helper method that sets property value and raises PropertyChanged event if the value has changed. (Inherited from NotifyPropertyChangedDispatcherObject.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Protected method VerifyAccess Enforces that the calling thread has access to this object. (Inherited from NotifyPropertyChangedDispatcherObject.)

Top

Events

  Name Description
Public event CanExecuteChanged
Public event PropertyChanged Occurs when a property value changes. (Inherited from NotifyPropertyChangedDispatcherObject.)

Top

Fields

  Name Description
Public fieldStatic member IsBusyProperty
Protected field m_backroundWorker

Top

Explicit Interface Implementations

  Name Description
Explicit interface implemetationPrivate method IWeakEventListener.ReceiveWeakEvent (Inherited from NotifyPropertyChangedDispatcherObject.)

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.TeamFoundation.MVVM Namespace