Package.EncryptCheckpoints 属性
Gets or sets a value that indicates whether the checkpoint files are encrypted.
命名空间: Microsoft.SqlServer.Dts.Runtime
程序集: Microsoft.SqlServer.ManagedDTS(在 Microsoft.SqlServer.ManagedDTS.dll 中)
语法
声明
<BrowsableAttribute(False)> _
Public Property EncryptCheckpoints As Boolean
Get
Set
用法
Dim instance As Package
Dim value As Boolean
value = instance.EncryptCheckpoints
instance.EncryptCheckpoints = value
[BrowsableAttribute(false)]
public bool EncryptCheckpoints { get; set; }
[BrowsableAttribute(false)]
public:
property bool EncryptCheckpoints {
bool get ();
void set (bool value);
}
[<BrowsableAttribute(false)>]
member EncryptCheckpoints : bool with get, set
function get EncryptCheckpoints () : boolean
function set EncryptCheckpoints (value : boolean)
属性值
类型:System.Boolean
true if the checkpoint files are encrypted; otherwise, false.
示例
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