Table of Contents

Class TypeResultsContainer

Namespace
Loehnert.Lisrt.DummyPart
Assembly
Loehnert.Lisrt.DummyPart.dll

Represents a container for type results.

public class TypeResultsContainer
Inheritance
TypeResultsContainer
Inherited Members

Constructors

TypeResultsContainer(TypeDefinitionsContainer)

Initializes a new instance of the TypeResultsContainer class.

public TypeResultsContainer(TypeDefinitionsContainer typeDefinitions)

Parameters

typeDefinitions TypeDefinitionsContainer

The type definitions container.

Exceptions

ArgumentNullException

Thrown when typeDefinitions is null.

Properties

TypeDefinitions

Gets the type definitions.

public TypeDefinitionsContainer TypeDefinitions { get; }

Property Value

TypeDefinitionsContainer

TypeResults

Gets the type results.

public IList<TypeResult> TypeResults { get; }

Property Value

IList<TypeResult>

Methods

TryGetTypeResult(string, out TypeResult)

Tries to get the result for a type identified by typeIdentifier.

public bool TryGetTypeResult(string typeIdentifier, out TypeResult typeResult)

Parameters

typeIdentifier string

Identifier of type.

typeResult TypeResult

Result for the type.

Returns

bool

A value indicating whether a type result was found.