Compartir a través de


AggregateCacheDependency Constructor

Definición

Inicializa una nueva instancia de la clase AggregateCacheDependency.

public:
 AggregateCacheDependency();
public AggregateCacheDependency ();
Public Sub New ()

Ejemplos

En el ejemplo de código siguiente se crea una instancia de la AggregateCacheDependency clase utilizando el constructor que no toma ningún argumento. Se crean dos CacheDependency objetos y, a continuación, se agregan a una CacheDependency matriz, myDepArray. Este constructor se usa junto con el Add método para hacer que el elemento almacenado en el Cache dependiente de ambos CacheDependency objetos.

         ' Create two CacheDependency objects, one to a
         ' text file and the other to an XML file. 
         ' Create a CacheDependency array with these 
         ' two objects as items in the array.
          txtDep = New CacheDependency(Server.MapPath("Storage.txt"))
          xmlDep = New CacheDependency(Server.MapPath("authors.xml"))
          Dim DepArray() As CacheDependency = {txtDep, xmlDep}

          ' Create an AggregateCacheDependency object and 
          ' use the Add method to add the array to it.   
          aggDep = New AggregateCacheDependency()
          aggDep.Add(DepArray)

          ' Call the GetUniqueId method to generate
          ' an ID for each dependency in the array.
          msg1.Text = aggDep.GetUniqueId()
          
          ' Add the new data set to the cache with 
          ' dependencies on both files in the array.
          Cache.Insert("XMLDataSet", Source, aggDep)

Comentarios

Este es el constructor sin parámetros de la AggregateCacheDependency clase .

Se aplica a