Udostępnij za pośrednictwem


SqlCacheDependencyDatabase.Name Właściwość

Definicja

Pobiera lub ustawia nazwę bazy danych.

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

Wartość właściwości

String

Ciąg określający nazwę używaną do SqlCacheDependencyDatabase identyfikowania bazy danych.

Atrybuty

Przykłady

W poniższym przykładzie kodu pokazano, jak używać Name właściwości.


// 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"

Uwagi

Właściwość Name umożliwia programowy dostęp i modyfikowanie name atrybutu add elementu databases węzła w pliku konfiguracji.

Atrybut name identyfikuje bazę danych, której tabela jest używana dla elementu SqlCacheDependency.

Dotyczy

Zobacz też