HttpResponse.AddFileDependencies 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 응답이 종속된 파일 이름 컬렉션에 파일 이름 그룹을 추가합니다.
오버로드
AddFileDependencies(ArrayList) |
현재 응답이 종속된 파일 이름 컬렉션에 파일 이름 그룹을 추가합니다. |
AddFileDependencies(String[]) |
현재 응답이 종속된 파일 이름 컬렉션에 파일 이름 배열을 추가합니다. |
AddFileDependencies(ArrayList)
현재 응답이 종속된 파일 이름 컬렉션에 파일 이름 그룹을 추가합니다.
public:
void AddFileDependencies(System::Collections::ArrayList ^ filenames);
public void AddFileDependencies (System.Collections.ArrayList filenames);
member this.AddFileDependencies : System.Collections.ArrayList -> unit
Public Sub AddFileDependencies (filenames As ArrayList)
매개 변수
- filenames
- ArrayList
추가할 파일의 컬렉션입니다.
예제
다음 예제는 출력 캐시되는 ASP.NET 페이지입니다. 페이지의 코드는 파일 경로의 를 ArrayList 만든 다음 메서드에 대한 호출 AddFileDependencies 에서 를 매개 변수로 전달합니다ArrayList. 이렇게 하면 변경 내용에 지정된 파일이 있으면 출력 캐시된 응답이 ArrayList 유효하지 않습니다.
<%@ Page Language="c#" %>
<%@ outputcache duration="30" varybyparam="none" %>
<%@ Import Namespace="Samples.AspNet.CS" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
// Create variables and assign file paths to them.
string file1 = Server.MapPath("authors.xml");
string file2 = Server.MapPath("books.xml");
// Create an array list to contain the file paths.
ArrayList fileList = new ArrayList();
fileList.Add(file1);
fileList.Add(file2);
// Make the page dependent upon the arrayList.
Response.AddFileDependencies(fileList);
// Populate the DataGrids.
dgAuthors.DataSource = DataHelper.GetAuthorData();
dgAuthors.DataBind();
dgBooks.DataSource = DataHelper.GetBookData();
dgBooks.DataBind();
lblOutputCacheMsg.Text = DateTime.Now.ToString();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>PageDataDisplay</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<table>
<tr>
<th style="WIDTH: 118px">
Authors
</th>
<td>
<asp:DataGrid id="dgAuthors" runat="server"></asp:DataGrid>
</td>
</tr>
<tr>
<th style="WIDTH: 118px">
Books
</th>
<td>
<asp:DataGrid id="dgBooks" runat="server"></asp:DataGrid>
</td>
</tr>
<tr>
<td style="WIDTH: 118px">
The page was generated at:
</td>
<td>
<asp:Label id="lblOutputCacheMsg" runat="server"></asp:Label>
</td>
</tr>
</table>
</form>
</body>
</html>
<%@ Page Language="vb" %>
<%@ outputcache duration="30" varybyparam="none" %>
<%@ Import Namespace="Samples.AspNet.VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Private Sub Page_Load(sender As Object, e As System.EventArgs)
' Create variable and assign file paths to them.
Dim file1 As String = Server.MapPath("authors.xml")
Dim file2 As String = Server.MapPath("books.xml")
' Create an array list to contain the file paths.
Dim fileList As New ArrayList()
fileList.Add(file1)
fileList.Add(file2)
' Use the AddFileDependencies method to
' invalidate the output cached page if
' one of the files changes.
Response.AddFileDependencies(fileList)
' Populate the DataGrids.
dgAuthors.DataSource = DataHelper.GetAuthorData()
dgAuthors.DataBind()
dgBooks.DataSource = DataHelper.GetBookData()
dgBooks.DataBind()
lblOutputCacheMsg.Text = DateTime.Now.ToString()
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>PageDataDisplay</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<table>
<tbody>
<tr>
<th style="WIDTH: 118px">
Authors</th>
<td>
<asp:DataGrid id="dgAuthors" runat="server"></asp:DataGrid>
</td>
</tr>
<tr>
<th style="WIDTH: 118px">
Books</th>
<td>
<asp:DataGrid id="dgBooks" runat="server"></asp:DataGrid>
</td>
</tr>
<tr>
<td style="WIDTH: 118px">
The page was generated at:</td>
<td>
<asp:Label id="lblOutputCacheMsg" runat="server"></asp:Label>
</td>
</tr>
</tbody>
</table>
</form>
</body>
</html>
추가 정보
적용 대상
AddFileDependencies(String[])
현재 응답이 종속된 파일 이름 컬렉션에 파일 이름 배열을 추가합니다.
public:
void AddFileDependencies(cli::array <System::String ^> ^ filenames);
public void AddFileDependencies (string[] filenames);
member this.AddFileDependencies : string[] -> unit
Public Sub AddFileDependencies (filenames As String())
매개 변수
- filenames
- String[]
추가할 파일 배열입니다.
예제
다음 예제에서는 파일 종속성 목록에 파일 이름 배열을 AddFileDependencies 추가합니다. 파일이 변경되면 캐시된 응답이 무효화됩니다.
<%@ Page Language="C#" %>
<%@ Import namespace="System.IO" %>
<script runat="server">
private void Page_Load()
{
String[] FileNames = new String[3];
FileNames[0] = "Test.txt";
FileNames[1] = "Test2.txt";
FileNames[2] = "Test3.txt";
Response.AddFileDependencies(FileNames);
Response.Write("File Dependencies successfully added!");
}
</script>
<%@ Page Language="VB" %>
<%@ Import namespace="System.IO" %>
<script runat="server">
Sub Page_Load()
Dim FileNames(2) As String
FileNames(0) = "Test.txt"
FileNames(1) = "Test2.txt"
FileNames(2) = "Test3.txt"
Response.AddFileDependencies(FileNames)
Response.Write("File Dependencies successfully added!")
End Sub
</script>
추가 정보
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET