Freigeben über


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)

Eigenschaftswert

true indicates that checkpoint files are encrypted.

Beispiel

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

Threadsicherheit

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.

Plattformen

Entwicklungsplattformen

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Zielplattforme

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Siehe auch

Verweis

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