Table of Contents

Class Mapping

Namespace
Cuemon
Assembly
Cuemon.Core.dll

Defines the mapping between a column/field/item in a data source and a column/field/item in the data destination.

public class Mapping
Inheritance
Object
Mapping
Derived

Constructors

Mapping(String, String)

Initializes a new instance of the Mapping class.

public Mapping(string source, string destination)

Parameters

source String

The name of the source column/field/item within the data source.

destination String

The name of the destination column/field/item within the data destination.

Properties

Destination

Get the name of the column/field/item being mapped in the data destination.

public string Destination { get; }

Property Value

String

The string value of the column/field/item being mapped in the data destination.

Source

Gets the name of the column/field/item being mapped in the data source.

public string Source { get; }

Property Value

String

The string value of the column/field/item being mapped in the data source.