ConnectionManagerBase.ProtectionLevel Property
DTSProtectionLevel 列挙を使用して値を取得します。値の設定も可能です。この列挙を使用すると、接続で機密情報を制御する方法を強制できます。
名前空間: Microsoft.SqlServer.Dts.Runtime
アセンブリ: Microsoft.SqlServer.ManagedDTS (microsoft.sqlserver.manageddts.dll 内)
構文
'宣言
Public Overridable Property ProtectionLevel As DTSProtectionLevel
public virtual DTSProtectionLevel ProtectionLevel { get; set; }
public:
virtual property DTSProtectionLevel ProtectionLevel {
DTSProtectionLevel get ();
void set (DTSProtectionLevel value);
}
/** @property */
public DTSProtectionLevel get_ProtectionLevel ()
/** @property */
public void set_ProtectionLevel (DTSProtectionLevel value)
public function get ProtectionLevel () : DTSProtectionLevel
public function set ProtectionLevel (value : DTSProtectionLevel)
プロパティ値
DTSProtectionLevel 列挙です。
使用例
次のコード例は、カスタム接続マネージャのオーバーライドされた ProtectionLevel プロパティの記述例を示しています。
public virtual DTSProtectionLevel ProtectionLevel
{
get{return DTSProtectionLevel.DontSaveSensitive;}
set{
// Vadidate that protection level is within company guidelines.
}
}
Public Overridable Property ProtectionLevel() As DTSProtectionLevel
Get
Return DTSProtectionLevel.DontSaveSensitive
End Get
Set (ByVal Value As DTSProtectionLevel)
' Vadidate that protection level is within company guidelines.
End Set
End Property
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
ConnectionManagerBase Class
ConnectionManagerBase Members
Microsoft.SqlServer.Dts.Runtime Namespace