@@ -74,6 +74,11 @@ namespace Utilities
get;
}
+ public abstract bool SupportsNamedStreams
+ {
+ get;
+ }
+
public static string GetParentDirectory(string path)
{
if (path == String.Empty)
@@ -78,5 +78,14 @@ namespace Utilities
+ /// <summary>
+ /// Indicates support for opening named streams (alternate data streams).
+ /// Named streams are opened using the filename:stream syntax.
+ /// </summary>
+ bool SupportsNamedStreams