Udostępnij za pośrednictwem


Właściwość Database.SymmetricKeys

Reprezentuje kolekcja SymmetricKey obiektów.Każdy SymmetricKey obiekt reprezentuje klucz zawartości zdefiniowane w bazie danych.

Przestrzeń nazw:  Microsoft.SqlServer.Management.Smo
Zestaw:  Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)

Składnia

'Deklaracja
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,  _
    GetType(SymmetricKey))> _
Public ReadOnly Property SymmetricKeys As SymmetricKeyCollection
    Get
'Użycie
Dim instance As Database
Dim value As SymmetricKeyCollection

value = instance.SymmetricKeys
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(SymmetricKey))]
public SymmetricKeyCollection SymmetricKeys { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny, 
    typeof(SymmetricKey))]
public:
property SymmetricKeyCollection^ SymmetricKeys {
    SymmetricKeyCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(SymmetricKey))>]
member SymmetricKeys : SymmetricKeyCollection
function get SymmetricKeys () : SymmetricKeyCollection

Wartość właściwości

Typ: Microsoft.SqlServer.Management.Smo.SymmetricKeyCollection
SymmetricKeyCollection Obiekt, który reprezentuje kluczy symetrycznych zdefiniowane w bazie danych.

Uwagi

Szczególne klucz zawartościs można się odwoływać za pomocą tej kolekcja, określając nazwę klucz zawartości.Aby dodać nowy klucz zawartości do kolekcja, wywołanie konstruktora klucz zawartości SymmetricKey, lub przeciążenie.

Przykłady

VB

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks2008R2 database.
Dim db As Database
db = srv.Databases("AdventureWorks2008R2")

'Display all the symmetric keys in the database.
Dim sk As SymmetricKey
For Each sk In db.SymmetricKeys
   Console.WriteLine(sk.Name)
Next

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")

Foreach ($sk in $db.SymmetricKeys)
{
   Write-Host $sk.Name
}