Share via


Package.EncryptCheckpoints Property

Indicates if checkpoint files are encrypted.

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

Syntax

'Declaration
<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)

Property Value

true indicates that checkpoint files are encrypted.

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

Thread Safety

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.

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

Target Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

See Also

Reference

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