public CloneIndexFieldDefInfo(IndexFieldDefInfo sourceField, IndexFieldDefInfo targetField) { m_source = null; m_target = null; if (sourceField != null) { m_source = (IndexFieldDefInfo)sourceField.Clone(); } if (targetField != null) { m_target = (IndexFieldDefInfo)targetField.Clone(); } }
public IndexFieldDefInfo GetTargetInfo() { return((IndexFieldDefInfo)m_target.Clone()); }
public IndexFieldDefInfo GetSourceInfo() { return((IndexFieldDefInfo)m_source.Clone()); }
public CloneIndexFieldDefInfo(IndexFieldDefInfo fieldInfo) { m_source = (IndexFieldDefInfo)fieldInfo.Clone(); m_target = (IndexFieldDefInfo)fieldInfo.Clone(); }