Класс DeploymentPlanExecutor

Represents a deployment constributor that executes the deployment plan. An example of a constributor would be one who executes deployment steps to create a report about actions performed during a deployment.

Иерархия наследования

System.Object
  Microsoft.SqlServer.Dac.Deployment.DeploymentContributor
    Microsoft.SqlServer.Dac.Deployment.DeploymentPlanContributor
      Microsoft.SqlServer.Dac.Deployment.DeploymentPlanExecutor

Пространство имен:  Microsoft.SqlServer.Dac.Deployment
Сборка:  Microsoft.SqlServer.Dac.Extensions (в Microsoft.SqlServer.Dac.Extensions.dll)

Синтаксис

'Декларация
Public MustInherit Class DeploymentPlanExecutor _
    Inherits DeploymentPlanContributor
'Применение
Dim instance As DeploymentPlanExecutor
public abstract class DeploymentPlanExecutor : DeploymentPlanContributor
public ref class DeploymentPlanExecutor abstract : public DeploymentPlanContributor
[<AbstractClassAttribute>]
type DeploymentPlanExecutor =  
    class 
        inherit DeploymentPlanContributor 
    end
public abstract class DeploymentPlanExecutor extends DeploymentPlanContributor

Тип DeploymentPlanExecutor обеспечивает доступ к следующим элементам.

Конструкторы

  Имя Описание
Защищенный метод DeploymentPlanExecutor Initializes a new instance of the DeploymentPlanExecutorclass.

В начало

Свойства

  Имя Описание
Защищенное свойство Canceled Gets a value that indicates whether the contributor was canceled. (Производный от DeploymentContributor.)
Защищенное свойство CancellationToken Gets the CancellationToken used to indicate whether contributor execution should be canceled. (Производный от DeploymentContributor.)

В начало

Методы

  Имя Описание
Открытый метод Cancel Cancels execution of the contributor. (Производный от DeploymentContributor.)
Открытый метод Dispose() Releases all resources used by the current instance of the DeploymentContributor class. (Производный от DeploymentContributor.)
Защищенный метод Dispose(Boolean) Releases the unmanaged resources used by the DeploymentContributor and optionally releases the managed resources. (Производный от DeploymentContributor.)
Открытый метод Equals (Производный от Object.)
Защищенный метод Finalize (Производный от Object.)
Открытый метод GetHashCode (Производный от Object.)
Открытый метод GetType (Производный от Object.)
Защищенный метод MemberwiseClone (Производный от Object.)
Защищенный метод OnApplyDeploymentConfiguration Indicates a member called by the deployment process in DacFx to give your code an opportunity to collect configuration information from the provided files. At the end of the method all streams will be disposed. Contributors that need to obtain data from the streams must read and cache the data during this method - attempts to read from the stream during a later method such as the OnExecute(DeploymentPlanContributorContext) method will fail. (Производный от DeploymentContributor.)
Защищенный метод OnEstablishDeploymentConfiguration Indicates a member called by the build process in DacFx to give your code an opportunity to modify deployment configuration. (Производный от DeploymentContributor.)
Защищенный метод OnExecute Indicates a member called by the deployment engine to allow custom contributors to execute their unique tasks. (Производный от DeploymentPlanContributor.)
Защищенный метод PublishMessage Publishes a message to the deployment engine. The deployment engine will process and report the message to consumers. (Производный от DeploymentContributor.)
Открытый метод ToString (Производный от Object.)

В начало

Безопасность многопоточности

Любые открытые статический (Shared в Visual Basic) элементы этого типа потокобезопасны. Потокобезопасность с элементами экземпляров не гарантируется.

См. также

Справочник

Пространство имен Microsoft.SqlServer.Dac.Deployment