KnownTypeSet

KnownTypeSet class

Represents an unordered set (i.e. a collection of unique items) containing Type objects which fully or partially qualified names can be used within report templates to invoke the corresponding types’ static members, perform type casts, etc.

To learn more, visit the LINQ Reporting Engine documentation article.

public class KnownTypeSet : IEnumerable<Type>

Properties

NameDescription
Count { get; }Gets the count of items in the set.

Methods

NameDescription
Add(Type)Adds the specified Type object to the set.
Clear()Removes all items from the set.
GetEnumerator()Returns An IEnumerator object to iterate over items of the set.
Remove(Type)Removes the specified Type object from the set.

See Also