| File: Serialization\ISupportTemporaryStorage.cs | Web Access |
| Project: src\roslyn\src\Workspaces\Core\Portable\Microsoft.CodeAnalysis.Workspaces.csproj (Microsoft.CodeAnalysis.Workspaces) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using Microsoft.CodeAnalysis.Host; namespace Microsoft.CodeAnalysis.Serialization; /// <summary> /// Interface for services that support dumping their contents to memory-mapped-files (generally speaking, our assembly /// reference objects). This allows those objects to expose the memory-mapped-file info needed to read that data back /// in in any process. /// </summary> internal interface ISupportTemporaryStorage { IReadOnlyList<ITemporaryStorageStreamHandle>? StorageHandles { get; } }