Package.EncryptCheckpoints プロパティ

定義

チェックポイント ファイルが暗号化されるかどうかを示す値を取得します。値の設定も可能です。

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

プロパティ値

Boolean

チェックポイント ファイルが暗号化されている場合は true。それ以外の場合は false。

属性

次のコード例では、EncryptCheckpointsfalse に設定します。

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  

適用対象