AggregateCacheDependency.GetUniqueID Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera unikatowy identyfikator AggregateCacheDependency obiektu.
public:
override System::String ^ GetUniqueID();
public override string GetUniqueID ();
override this.GetUniqueID : unit -> string
Public Overrides Function GetUniqueID () As String
Zwraca
Unikatowy identyfikator AggregateCacheDependency obiektu. Jeśli jeden ze skojarzonych obiektów zależności nie ma unikatowego identyfikatora, GetUniqueID() metoda zwraca wartość null
.
Przykłady
W poniższym przykładzie kodu użyto GetUniqueID metody do utworzenia i wyświetlenia identyfikatora dla wystąpienia AggregateCacheDependency klasy o nazwie aggDep
, po utworzeniu i wypełnieniu.
' 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)
Uwagi
Ta metoda przypisuje unikatowy identyfikator do każdej zależności w tablicy i zwraca każdą z nich. Identyfikator jest kombinacją nazwy pliku (dla zależności pliku) lub nazwy klucza (dla zależności klucza pamięci podręcznej) i ciągu, który ta metoda przypisuje do zależności.