ArcGISCompare.MigrationData.MigrationData C# (CSharp) Method

MigrationData() private method

private MigrationData ( IWorkspace theS, IWorkspace theD, System.Boolean S, System.Boolean B, String K, String preS ) : System
theS IWorkspace
theD IWorkspace
S System.Boolean
B System.Boolean
K String
preS String
return System
    internal MigrationData(IWorkspace theS, IWorkspace theD, Boolean S, Boolean B, String K, String preS)
    {
      this.srcWS = theS;
      this.destWS = theD;
      this.splitNon = S;
      this.buildKeys = B;
      this.preK = K;
      this.preSplit = preS;
      this.DefZ = 1;
      this.ptToPolygon = false;
      this.PolygonToPtI = false;
      this.PolygonToPtA = false;
      this.PolygonToLine = false;
      this.PolylineToPt = false;
    }
  }
MigrationData