Compartir a través de


Clase DeploymentPlanContributor

Represents a contributor to the deployment process.

Jerarquía de herencia

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

Espacio de nombres:  Microsoft.SqlServer.Dac.Deployment
Ensamblado:  Microsoft.SqlServer.Dac.Extensions (en Microsoft.SqlServer.Dac.Extensions.dll)

Sintaxis

'Declaración
Public MustInherit Class DeploymentPlanContributor _
    Inherits DeploymentContributor
'Uso
Dim instance As DeploymentPlanContributor
public abstract class DeploymentPlanContributor : DeploymentContributor
public ref class DeploymentPlanContributor abstract : public DeploymentContributor
[<AbstractClassAttribute>]
type DeploymentPlanContributor =  
    class 
        inherit DeploymentContributor 
    end
public abstract class DeploymentPlanContributor extends DeploymentContributor

El tipo DeploymentPlanContributor expone los siguientes miembros.

Constructores

  Nombre Descripción
Método protegido DeploymentPlanContributor Initializes a new instance of the DeploymentPlanContributor class.

Arriba

Propiedades

  Nombre Descripción
Propiedad protegida Canceled Gets a value that indicates whether the contributor was canceled. (Se hereda de DeploymentContributor.)
Propiedad protegida CancellationToken Gets the CancellationToken used to indicate whether contributor execution should be canceled. (Se hereda de DeploymentContributor.)

Arriba

Métodos

  Nombre Descripción
Método público Cancel Cancels execution of the contributor. (Se hereda de DeploymentContributor.)
Método público Dispose() Releases all resources used by the current instance of the DeploymentContributor class. (Se hereda de DeploymentContributor.)
Método protegido Dispose(Boolean) Releases the unmanaged resources used by the DeploymentContributor and optionally releases the managed resources. (Se hereda de DeploymentContributor.)
Método público Equals (Se hereda de Object.)
Método protegido Finalize (Se hereda de Object.)
Método público GetHashCode (Se hereda de Object.)
Método público GetType (Se hereda de Object.)
Método protegido MemberwiseClone (Se hereda de Object.)
Método protegido 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. (Se hereda de DeploymentContributor.)
Método protegido OnEstablishDeploymentConfiguration Indicates a member called by the build process in DacFx to give your code an opportunity to modify deployment configuration. (Se hereda de DeploymentContributor.)
Método protegido OnExecute Indicates a member called by the deployment engine to allow custom contributors to execute their unique tasks.
Método protegido PublishMessage Publishes a message to the deployment engine. The deployment engine will process and report the message to consumers. (Se hereda de DeploymentContributor.)
Método público ToString (Se hereda de Object.)

Arriba

Seguridad para subprocesos

Cualquier miembro público static (Shared en Visual Basic) de este tipo es seguro para subprocesos. No se garantiza que los miembros de instancia sean seguros para subprocesos.

Vea también

Referencia

Espacio de nombres Microsoft.SqlServer.Dac.Deployment