Sdílet prostřednictvím


SqlCacheDependencyDatabase.Name Vlastnost

Definice

Získá nebo nastaví název databáze.

public:
 property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("name", IsKey=true, IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string Name { get; set; }
[<System.Configuration.ConfigurationProperty("name", IsKey=true, IsRequired=true)>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Name : string with get, set
Public Property Name As String

Hodnota vlastnosti

String

Řetězec, který určuje název používaný SqlCacheDependencyDatabase k identifikaci databáze.

Atributy

Příklady

Následující příklad kódu ukazuje, jak použít Name vlastnost.


// Get the current Name property value.
string nameValue = sqlCdd.Name;

// Set the Name for this configuration element.
sqlCdd.Name = "ConfigElementName";
' Get the current Name property value.
Dim nameValue As String = sqlCdd.Name

' Set the Name for this configuration element.
sqlCdd.Name = "ConfigElementName"

Poznámky

Vlastnost Name umožňuje programově přistupovat a upravovat name atribut add prvku databases uzlu v konfiguračním souboru.

Atribut name identifikuje databázi, jejíž tabulka se používá pro SqlCacheDependency.

Platí pro

Viz také