Partilhar via


IChunkTreeCache.GetOrAdd(String, Func<IFileInfo,ChunkTree>) Método

Definição

Obtenha um existente ChunkTreeou crie e adicione um novo se ele não estiver disponível no cache ou tiver expirado.

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

Parâmetros

pagePath
String

O caminho relativo do aplicativo da página Razor.

getChunkTree
Func<IFileInfo,ChunkTree>

Um delegado que cria um novo ChunkTree.

Retornos

O ChunkTree se existir um arquivo em pagePath, null caso contrário.

Comentários

O resultante ChunkTree não contém partes herdadas de _ViewStart ou partes herdadas padrão.

Aplica-se a