ITaskManagementService Interface

Initializes a new instance of the ITaskManagementService interface.

Namespace:  Microsoft.SqlServer.Management
Assembly:  Microsoft.SqlServer.Management.SDK.SqlStudio (in Microsoft.SqlServer.Management.SDK.SqlStudio.dll)

Syntax

'Declaration
<ComVisibleAttribute(True)> _
<GuidAttribute("c45268a4-eb74-46cd-aaa3-7a14ba338a39")> _
Public Interface ITaskManagementService _
    Inherits ITaskLauncherService
'Usage
Dim instance As ITaskManagementService
[ComVisibleAttribute(true)]
[GuidAttribute("c45268a4-eb74-46cd-aaa3-7a14ba338a39")]
public interface ITaskManagementService : ITaskLauncherService
[ComVisibleAttribute(true)]
[GuidAttribute(L"c45268a4-eb74-46cd-aaa3-7a14ba338a39")]
public interface class ITaskManagementService : ITaskLauncherService
[<ComVisibleAttribute(true)>]
[<GuidAttribute("c45268a4-eb74-46cd-aaa3-7a14ba338a39")>]
type ITaskManagementService =  
    interface
        interface ITaskLauncherService
    end
public interface ITaskManagementService extends ITaskLauncherService

The ITaskManagementService type exposes the following members.

Properties

  Name Description
Public property ActionHandlers Gets the dictionary of all action handlers known by the system.
Public property Actions Gets the dictionary of the actions known by the service.

Top

Methods

  Name Description
Public method PerformAction Instantiates and activates requested action. (Inherited from ITaskLauncherService.)

Top

Events

  Name Description
Public event ActionCompleted Occurs when the action handler reports that the action is completed. (Inherited from ITaskLauncherService.)
Public event Launched Occurs after the action is performed. (Inherited from ITaskLauncherService.)
Public event Launching Occurs before performing the action. (Inherited from ITaskLauncherService.)

Top