PathInternal.NotSupported.cs 1.1 KB

1234567891011121314151617181920
  1. namespace System.IO
  2. {
  3. internal static partial class PathInternal
  4. {
  5. internal const char DirectorySeparatorChar = '\0';
  6. internal const char AltDirectorySeparatorChar = '\0';
  7. internal const char VolumeSeparatorChar = '\0';
  8. internal const char PathSeparator = '\0';
  9. internal const string DirectorySeparatorCharAsString = "";
  10. internal const string ParentDirectoryPrefix = "";
  11. internal static int GetRootLength(ReadOnlySpan<char> path) => throw new PlatformNotSupportedException ();
  12. internal static bool IsDirectorySeparator(char c) => throw new PlatformNotSupportedException ();
  13. internal static string NormalizeDirectorySeparators(string path) => throw new PlatformNotSupportedException ();
  14. internal static bool IsPartiallyQualified(ReadOnlySpan<char> path) => throw new PlatformNotSupportedException ();
  15. internal static bool IsEffectivelyEmpty(string path) => throw new PlatformNotSupportedException ();
  16. internal static bool IsEffectivelyEmpty(ReadOnlySpan<char> path) => throw new PlatformNotSupportedException ();
  17. }
  18. }