Udostępnij za pośrednictwem


Właściwość Database.AsymmetricKeys

Reprezentuje kolekcja AsymmetricKey obiektów.Każdy AsymmetricKey obiekt reprezentuje klucz asymetrycznego, 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(AsymmetricKey))> _
Public ReadOnly Property AsymmetricKeys As AsymmetricKeyCollection
    Get
'Użycie
Dim instance As Database
Dim value As AsymmetricKeyCollection

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

Wartość właściwości

Typ: Microsoft.SqlServer.Management.Smo.AsymmetricKeyCollection
AsymmetricKeyCollection Obiekt, który reprezentuje klucze asymetryczne zdefiniowane w bazie danych.

Uwagi

Określone klucze asymetryczne można się odwoływać za pomocą tej kolekcja, określając nazwę klucz asymetrycznego.Aby dodać nowego klucz asymetrycznego do kolekcja, wywołanie konstruktora klucz asymetrycznego AsymmetricKey.

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 asymmetric keys on the database.
Dim ak As AsymmetricKey
For Each ak In db.AsymmetricKeys
   Console.WriteLine(ak.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 ($ak in $db.AsymmetricKeys)
{
   Write-Host $ak.Name
}