Table of Contents

Interface ITypeFieldNavigator

Namespace
Yarhl.IO.Serialization
Assembly
Yarhl.dll

Interface to provide implementations that iterate over fields of types.

public interface ITypeFieldNavigator

Methods

IterateFields(Type)

Iterate over the fields of a given type using reflection with enumerables.

IEnumerable<FieldInfo> IterateFields(Type type)

Parameters

type Type

The type to iterate over fields.

Returns

IEnumerable<FieldInfo>

Enumerable to iterate over its fields.