Package.EncryptCheckpoints Property

 

Applies To: SQL Server 2016 Preview

Gets or sets a value that indicates whether the checkpoint files are encrypted.

Namespace:   Microsoft.SqlServer.Dts.Runtime
Assembly:  Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)

Syntax

[BrowsableAttribute(false)]
public bool EncryptCheckpoints { get; set; }
public:
[BrowsableAttribute(false)]
property bool EncryptCheckpoints {
    bool get();
    void set(bool value);
}
[<BrowsableAttribute(false)>]
member EncryptCheckpoints : bool with get, set
<BrowsableAttribute(False)>
Public Property EncryptCheckpoints As Boolean

Property Value

Type: System.Boolean

true if the checkpoint files are encrypted; otherwise, false.

Examples

Legacy Code Example

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

See Also

Package Class
Microsoft.SqlServer.Dts.Runtime Namespace

Return to top