Compartir a través de


SqlCacheDependencyDatabase.Name Propiedad

Definición

Obtiene o establece el nombre de la base de datos.

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

Valor de propiedad

String

Cadena que especifica el nombre que utiliza SqlCacheDependencyDatabase para identificar la base de datos.

Atributos

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar la propiedad Name.


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

Comentarios

La Name propiedad permite tener acceso mediante programación y modificar el name atributo de un add elemento del databases nodo en un archivo de configuración.

El name atributo identifica la base de datos cuya tabla se usa para .SqlCacheDependency

Se aplica a

Consulte también