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
typeDefinitionsTypeDefinitionsContainerThe type definitions container.
Exceptions
- ArgumentNullException
Thrown when
typeDefinitionsis 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
typeIdentifierstringIdentifier of type.
typeResultTypeResultResult for the type.
Returns
- bool
A value indicating whether a type result was found.