Pass cancellation token to CopyAsync read block
[mono.git] / mcs / class / corlib / System.IO / SearchPattern.cs
index 26694f4e40ac01a3d2e39bf8fbbfeb8b77625d89..fb4641a5cc598dd9380104577db1eb7914d02f4a 100644 (file)
@@ -38,7 +38,9 @@ namespace System.IO {
        // the pattern '*.*' matches all files (i think . matches the extension),\r
        // whereas under UNIX it should only match files containing the '.' character.\r
 \r
-       class SearchPattern {\r
+       class SearchPattern\r
+       {\r
+/*             \r
                public SearchPattern (string pattern) : this (pattern, false) { }\r
 \r
                public SearchPattern (string pattern, bool ignore)\r
@@ -164,8 +166,9 @@ namespace System.IO {
                }\r
 \r
                // private static\r
-\r
+*/\r
                internal static readonly char [] WildcardChars = { '*', '?' };\r
+/*             \r
                internal static readonly char [] InvalidChars = { Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar };\r
 \r
                private class Op {\r
@@ -188,5 +191,6 @@ namespace System.IO {
                        End,                    // end of pattern\r
                        True                    // always succeeds\r
                };\r
+*/\r
        }\r
 }\r