MetadataCacheResult<T> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
MetadataCacheResult<T>(MetadataCacheResult<T>) | |
MetadataCacheResult<T>(Boolean, T) |
A result entry for extension metadata cache read. |
MetadataCacheResult<T>(MetadataCacheResult<T>)
protected MetadataCacheResult (Microsoft.Internal.VisualStudio.Extensibility.Framework.MetadataCacheResult<T> original);
Protected Sub New (original As MetadataCacheResult(Of T))
Parameters
- original
- MetadataCacheResult<T>
Applies to
MetadataCacheResult<T>(Boolean, T)
A result entry for extension metadata cache read.
public MetadataCacheResult (bool IsValid, T? Data);
new Microsoft.Internal.VisualStudio.Extensibility.Framework.MetadataCacheResult<'T> : bool * 'T -> Microsoft.Internal.VisualStudio.Extensibility.Framework.MetadataCacheResult<'T>
Public Sub New (IsValid As Boolean, Data As T)
Parameters
- IsValid
- Boolean
Gets whether the result was read successfully and is valid.
- Data
- T
Data that is read if IsValid is true.