다음을 통해 공유


IChunkTreeCache.GetOrAdd(String, Func<IFileInfo,ChunkTree>) 메서드

정의

기존 ChunkTree를 얻거나 캐시에서 사용할 수 없거나 만료된 경우 새 를 만들고 추가합니다.

public:
 Microsoft::AspNetCore::Razor::Chunks::ChunkTree ^ GetOrAdd(System::String ^ pagePath, Func<Microsoft::Extensions::FileProviders::IFileInfo ^, Microsoft::AspNetCore::Razor::Chunks::ChunkTree ^> ^ getChunkTree);
public Microsoft.AspNetCore.Razor.Chunks.ChunkTree GetOrAdd (string pagePath, Func<Microsoft.Extensions.FileProviders.IFileInfo,Microsoft.AspNetCore.Razor.Chunks.ChunkTree> getChunkTree);
abstract member GetOrAdd : string * Func<Microsoft.Extensions.FileProviders.IFileInfo, Microsoft.AspNetCore.Razor.Chunks.ChunkTree> -> Microsoft.AspNetCore.Razor.Chunks.ChunkTree
Public Function GetOrAdd (pagePath As String, getChunkTree As Func(Of IFileInfo, ChunkTree)) As ChunkTree

매개 변수

pagePath
String

Razor 페이지의 애플리케이션 상대 경로입니다.

getChunkTree
Func<IFileInfo,ChunkTree>

ChunkTree를 만드는 대리자입니다.

반환

ChunkTree 파일이 에 pagePath있으면 이고null, 그렇지 않으면 입니다.

설명

결과에 ChunkTree 는 _ViewStart 상속된 청크 또는 기본 상속된 청크가 포함되지 않습니다.

적용 대상