Table of Contents

Enum PropertyMatching

Namespace
ForgeMap
Assembly
ForgeMap.Abstractions.dll

Specifies how properties should be matched between source and destination types.

public enum PropertyMatching

Fields

ByName = 0

Case-sensitive property name matching. Readable, assignable destination properties with a name-matched, readable source property are mapped automatically. Use IgnoreAttribute to exclude security-sensitive properties when mapping from untrusted sources.

ByNameCaseInsensitive = 1

Case-insensitive property name matching. Readable, assignable destination properties with a name-matched, readable source property are mapped automatically. Use IgnoreAttribute to exclude security-sensitive properties when mapping from untrusted sources.