Compartir a través de


Package.EncryptCheckpoints Property

Indicates if checkpoint files are encrypted.

Espacio de nombres: Microsoft.SqlServer.Dts.Runtime
Ensamblado: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

Sintaxis

'Declaración
<BrowsableAttribute(False)> _
Public Property EncryptCheckpoints As Boolean
[BrowsableAttribute(false)] 
public bool EncryptCheckpoints { get; set; }
[BrowsableAttribute(false)] 
public:
property bool EncryptCheckpoints {
    bool get ();
    void set (bool value);
}
/** @property */
public boolean get_EncryptCheckpoints ()

/** @property */
public void set_EncryptCheckpoints (boolean value)
public function get EncryptCheckpoints () : boolean

public function set EncryptCheckpoints (value : boolean)

Valor de propiedad

true indicates that checkpoint files are encrypted.

Ejemplo

The following code example sets the EncryptCheckpoints to false.

Application app = new Application();
Package pkg = new Package();
pkg. EncryptCheckpoints = false;
Dim app As Application = New Application() 
Dim pkg As Package = New Package() 
pkg.EncryptCheckpoints = False

Seguridad para subprocesos

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

Plataformas

Plataformas de desarrollo

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Plataformas de destino

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Vea también

Referencia

Package Class
Package Members
Microsoft.SqlServer.Dts.Runtime Namespace