Exemplo n.º 1
0
        public static SnapshotTaken TakeSnapshot(string name, IEnumerable <string> includedPaths, IEnumerable <string> excludedNames, bool verbose)
        {
            var recorder = new SnapshotTaken(name, includedPaths, excludedNames ?? new String[0], verbose);

            recorder.Take();
            return(recorder);
        }