コード例 #1
0
 public DiffReportEntry(SnapshotDiffReport.DiffType type, byte[] sourcePath, byte[]
                        targetPath)
 {
     this.type       = type;
     this.sourcePath = sourcePath;
     this.targetPath = targetPath;
 }
コード例 #2
0
 public DiffReportEntry(SnapshotDiffReport.DiffType type, byte[][] sourcePathComponents
                        , byte[][] targetPathComponents)
 {
     this.type       = type;
     this.sourcePath = DFSUtil.ByteArray2bytes(sourcePathComponents);
     this.targetPath = targetPathComponents == null ? null : DFSUtil.ByteArray2bytes(targetPathComponents
                                                                                     );
 }
コード例 #3
0
 public DiffReportEntry(SnapshotDiffReport.DiffType type, byte[][] sourcePathComponents
                        )
     : this(type, sourcePathComponents, null)
 {
 }
コード例 #4
0
 public DiffReportEntry(SnapshotDiffReport.DiffType type, byte[] sourcePath)
     : this(type, sourcePath, null)
 {
 }