Table of Contents

Interface IDictionaryTypeShape

Namespace
TypeShape.Abstractions
Assembly
TypeShape.dll

Provides a strongly typed shape model for a .NET type that is a dictionary.

public interface IDictionaryTypeShape : ITypeShape
Inherited Members

Remarks

Typically covers types implementing interfaces such as IDictionary<TKey, TValue>, IReadOnlyDictionary<TKey, TValue> or IDictionary.

Properties

ConstructionStrategy

Gets the construction strategy for the given collection.

CollectionConstructionStrategy ConstructionStrategy { get; }

Property Value

CollectionConstructionStrategy

KeyType

Gets the shape of the underlying key type.

ITypeShape KeyType { get; }

Property Value

ITypeShape

Remarks

For non-generic dictionaries this returns the shape for object.

ValueType

Gets the shape of the underlying value type.

ITypeShape ValueType { get; }

Property Value

ITypeShape

Remarks

For non-generic dictionaries this returns the shape for object.