AggregateCacheDependency.Add(CacheDependency[]) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
CacheDependency 개체에 AggregateCacheDependency 개체 배열을 추가합니다.
public:
void Add(... cli::array <System::Web::Caching::CacheDependency ^> ^ dependencies);
public void Add (params System.Web.Caching.CacheDependency[] dependencies);
member this.Add : System.Web.Caching.CacheDependency[] -> unit
Public Sub Add (ParamArray dependencies As CacheDependency())
매개 변수
- dependencies
- CacheDependency[]
추가할 CacheDependency 개체의 배열입니다.
예외
CacheDependency 개체가 여러 Cache 항목에서 참조되는 경우
예제
다음 코드 예제에서는 생성자와 함께 AggregateCacheDependency 메서드를 사용하여 Add 두 CacheDependency 개체를 만들고, 이 개체를 명명된 CacheDependency myDepArray
배열에 추가한 다음, 캐시의 항목이 해당 두 CacheDependency 개체에 종속되도록 합니다.
' 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)