You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

40 lines
540 B

  1. using System;
  2. namespace CI.WSANative.FilePickers
  3. {
  4. public class WSAStorageFile
  5. {
  6. public byte[] ReadBytes()
  7. {
  8. return new byte[0];
  9. }
  10. public string ReadText()
  11. {
  12. return string.Empty;
  13. }
  14. public void WriteBytes(byte[] bytes)
  15. {
  16. }
  17. public void WriteText(string text)
  18. {
  19. }
  20. public DateTimeOffset DateCreated;
  21. public string DisplayName;
  22. public string FileType;
  23. public string Name;
  24. public string Path;
  25. public string DisplayType;
  26. public bool IsAvailable;
  27. }
  28. }