Package.EncryptCheckpoints Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob die Prüfpunktdateien verschlüsselt werden, oder legt ihn fest.

public:
 property bool EncryptCheckpoints { bool get(); void set(bool value); };
[Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyCategory(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "PropertyCategoryCheckpoints")]
[Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyDescription(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "EncryptCheckpointsDesc")]
[System.ComponentModel.Browsable(false)]
public bool EncryptCheckpoints { get; set; }
[<Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyCategory(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "PropertyCategoryCheckpoints")>]
[<Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyDescription(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "EncryptCheckpointsDesc")>]
[<System.ComponentModel.Browsable(false)>]
member this.EncryptCheckpoints : bool with get, set
Public Property EncryptCheckpoints As Boolean

Eigenschaftswert

Boolean

true, wenn die Prüfpunktdateien verschlüsselt sind; andernfalls "false".

Attribute

Beispiele

Im folgenden Codebeispiel wird der EncryptCheckpoints Wert auf 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  

Gilt für: