AggregateCacheDependency.GetUniqueID 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
AggregateCacheDependency 개체의 고유 식별자를 검색합니다.
public:
override System::String ^ GetUniqueID();
public override string GetUniqueID ();
override this.GetUniqueID : unit -> string
Public Overrides Function GetUniqueID () As String
반환
AggregateCacheDependency 개체의 고유 식별자입니다. 연결된 종속성 개체 중 하나에 고유 식별자가 없는 경우 GetUniqueID() 메서드는 null
을 반환합니다.
예제
다음 코드 예제에서는 메서드를 만들고 GetUniqueID 클래스의 AggregateCacheDependency 인스턴스에 대 한 식별자를 표시, 명명 aggDep
된, 일단 만들어지고 채워집니다.
' 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)
설명
이 메서드는 배열의 각 종속성에 고유 식별자를 할당하고 각각을 반환합니다. 식별자는 파일 이름(파일 종속성) 또는 키 이름(캐시 키 종속성)과 이 메서드가 종속성에 할당하는 문자열의 조합입니다.