Sdl.Web.Tridion.Mapping.MappingData.MappingData C# (CSharp) Method

MappingData() public method

Initializes a new MappingData instance which is a (shallow) copy of another.
public MappingData ( MappingData other ) : System
other MappingData The other instance to copy.
return System
        public MappingData(MappingData other)
        {
            TargetType = other.TargetType;
            Content = other.Content;
            Meta = other.Meta;
            TargetEntitiesByPrefix = other.TargetEntitiesByPrefix;
            SemanticSchema = other.SemanticSchema;
            EmbeddedSemanticSchemaField = other.EmbeddedSemanticSchemaField;
            EntityNames = other.EntityNames;
            ParentDefaultPrefix = other.ParentDefaultPrefix;
            EmbedLevel = other.EmbedLevel;
            SourceEntity = other.SourceEntity;
            ModelId = other.ModelId;
            Localization = other.Localization;
            ContextXPath = other.ContextXPath;
        }

Same methods

MappingData::MappingData ( ) : System
MappingData