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

참고 항목

참조

Package 클래스

Microsoft.SqlServer.Dts.Runtime 네임스페이스