Compartir a través de


EncryptCheckpoints Propiedad

Indicates if checkpoint files are encrypted.

Espacio de nombres:  Microsoft.SqlServer.Dts.Runtime
Ensamblado:  Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)

Sintaxis

'Declaración
<BrowsableAttribute(False)> _
Public Property EncryptCheckpoints As Boolean
    Get
    Set
'Uso
Dim instance As Package
Dim value As Boolean

value = instance.EncryptCheckpoints

instance.EncryptCheckpoints = value
[BrowsableAttribute(false)]
public bool EncryptCheckpoints { get; set; }
[BrowsableAttribute(false)]
public:
property bool EncryptCheckpoints {
    bool get ();
    void set (bool value);
}
[<BrowsableAttribute(false)>]
member EncryptCheckpoints : bool with get, set
function get EncryptCheckpoints () : boolean
function set EncryptCheckpoints (value : boolean)

Valor de la propiedad

Tipo: System. . :: . .Boolean
true indicates that checkpoint files are encrypted.

Ejemplos

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