다음을 통해 공유


AggregateCacheDependency.GetUniqueID 메서드

정의

AggregateCacheDependency 개체의 고유 식별자를 검색합니다.

public:
 override System::String ^ GetUniqueID();
public override string GetUniqueID ();
override this.GetUniqueID : unit -> string
Public Overrides Function GetUniqueID () As String

반환

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)

설명

이 메서드는 배열의 각 종속성에 고유 식별자를 할당하고 각각을 반환합니다. 식별자는 파일 이름(파일 종속성) 또는 키 이름(캐시 키 종속성)과 이 메서드가 종속성에 할당하는 문자열의 조합입니다.

적용 대상