CacheDependency.UtcLastModified 속성

정의

종속성을 마지막으로 변경한 시간을 가져옵니다.

public:
 property DateTime UtcLastModified { DateTime get(); };
public DateTime UtcLastModified { get; }
member this.UtcLastModified : DateTime
Public ReadOnly Property UtcLastModified As DateTime

속성 값

종속성을 마지막으로 변경한 시간입니다.

예제

다음 코드 예제에서는 클래스를 AggregateCacheDependency 사용 하 여 두 개의 CacheDependency 개체 종속성을 사용 하 여 항목을 추가 하는 Cache합니다. 항목에 대한 Cache 요청이 수행되면 코드는 항목이 에 Cache있는지 여부를 확인합니다. 이 경우 속성은 UtcLastModified 문자열로 변환되고 페이지에 표시됩니다. 그렇지 않으면 항목과 해당 두 종속성이 만들어지고 에 Cache추가됩니다.

' When the page is loaded, use the 
' AggregateCacheDependency class to make 
' a cached item dependent on two files.

Sub Page_Load(sender As Object, e As EventArgs)
   Dim Source As DataView

   Source = Cache("XMLDataSet")

   If Source Is Nothing
          Dim DS As New DataSet
          Dim FS As FileStream
          Dim Reader As StreamReader
          Dim txtDep As CacheDependency
          Dim xmlDep As CacheDependency
          Dim aggDep As AggregateCacheDependency


          FS = New FileStream(Server.MapPath("authors.xml"),FileMode.Open,FileAccess.Read)
          Reader = New StreamReader(FS)
          DS.ReadXml(Reader)
          FS.Close()

          Source = new DataView(ds.Tables(0))
         ' 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)
          If aggDep.HasChanged = True Then
             chngMsg.Text = "The dependency changed at: " & DateTime.Now

          Else
             chngMsg.Text = "The dependency changed last at: " & aggDep.UtcLastModified.ToString()
          End If


          cacheMsg1.Text = "Dataset created explicitly"
        Else
          cacheMsg1.Text = "Dataset retrieved from cache"
        End If


          MyLiteral.Text = Source.Table.TableName
          MyDataGrid.DataSource = Source
          MyDataGrid.DataBind()
      End Sub

설명

이 속성은 UTC(협정 세계시)(그리니치 표준시라고도 함)로 측정됩니다.

적용 대상

추가 정보