Class TypeResultsContainer
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
TypeDefinitionsContainerThe type definitions container.
Exceptions
- ArgumentNullException
Thrown when
typeDefinitions
is null.
Properties
TypeDefinitions
Gets the type definitions.
public TypeDefinitionsContainer TypeDefinitions { get; }
Property Value
TypeResults
Gets the type results.
public IList<TypeResult> TypeResults { get; }
Property Value
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
stringIdentifier of type.
typeResult
TypeResultResult for the type.
Returns
- bool
A value indicating whether a type result was found.