ArcGISCompare.FeatureMappingData.FeatureMappingData C# (CSharp) Method

FeatureMappingData() private method

private FeatureMappingData ( String srcDB, String source, String destination, esriGeometryType srcGT, esriGeometryType destGT, int serial ) : System
srcDB String
source String
destination String
srcGT esriGeometryType
destGT esriGeometryType
serial int
return System
    internal FeatureMappingData(String srcDB, String source, String destination, esriGeometryType srcGT, esriGeometryType destGT, int serial)
    {
      this.serialNumber = serial;
      if (srcDB != "") { this.srcGeoDb = MiscProcs.fileNameONLY(srcDB); }
      else { this.srcGeoDb = ""; }
      this.srcFC = source;
      this.destFC = destination;
      this.srcGeom = srcGT;
      this.destGeom = destGT;
      if (this.srcGeom == this.destGeom) { this.geomTransform = 0; }
      else { this.geomTransform = GeoDbProcs.seekGeometryTransform(srcGT, destGT); }
      this.theTransforms = null;
      this.zmTransform = 0;
      this.featCount = 0;
      this.loadErrors = -1;
      this.srcPK = "";
      this.destPK = "";
      this.status = 0;
    }