Skip to content

Commit efddcc8

Browse files
committed
fix StorageFiles.md Return Type display wrong
1 parent e662fdd commit efddcc8

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

docs/helpers/StorageFiles.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -75,30 +75,30 @@ Dim isFilePathValid As Boolean = StorageFileHelper.IsFilePathValid("folder/appFi
7575

7676
## Methods
7777

78-
| Methods | Return Type | Description |
79-
|------------------------------------------------------------------------------------------|-------------------|--------------------------------------------------------------------------------------------|
80-
| FileExistsAsync(StorageFolder, String, Boolean) | Task<bool> | Gets a value indicating whether a file exists in the current folder |
81-
| IsFileNameValid(String) | bool | Gets a value indicating whether a filename is correct or not using the Storage feature |
82-
| IsFilePathValid(String) | bool | Gets a value indicating whether a file path is correct or not using the Storage feature |
83-
| ReadBytesAsync(StorageFile) | Task<byte[]> | Gets an array of bytes from a `StorageFile` |
84-
| ReadBytesFromFileAsync(StorageFolder, String) | Task<byte[]> | Gets an array of bytes from a `StorageFile` located in the given `StorageFolder` |
85-
| ReadBytesFromKnownFoldersFileAsync(KnownFolderId, String) | Task<byte[]> | Gets an array of bytes from a `StorageFile` located in a well known folder |
86-
| ReadBytesFromLocalCacheFileAsync(String) | Task<byte[]> | Gets an array of bytes from a `StorageFile` located in the application local cache folder |
87-
| ReadBytesFromLocalFileAsync(String) | Task<byte[]> | Gets an array of bytes from a `StorageFile` located in the application local folder |
88-
| ReadBytesFromPackagedFileAsync(String) | Task<byte[]> | Gets an array of bytes from a `StorageFile` located in the application installation folder |
89-
| ReadTextFromFileAsync(StorageFolder, String) | Task<string> | Gets a string value from a `StorageFile` located in the given `StorageFolder` |
90-
| ReadTextFromKnownFoldersFileAsync(KnownFolderId, String) | Task<string> | Gets a string value from a `StorageFile` located in a well known folder |
91-
| ReadTextFromLocalCacheFileAsync(String) | Task<string> | Gets a string value from a `StorageFile` located in the application local cache folder |
92-
| ReadTextFromLocalFileAsync(String) | Task<string> | Gets a string value from a `StorageFile` located in the application local folder |
93-
| ReadTextFromPackagedFileAsync(String) | Task<string> | Gets a string value from a `StorageFile` located in the application installation folder |
94-
| WriteBytesToFileAsync(StorageFolder, Byte[], String, CreationCollisionOption) | Task<StorageFile> | Saves an array of bytes to a `StorageFile` in the given `StorageFolder` |
95-
| WriteBytesToKnownFolderFileAsync(KnownFolderId, Byte[], String, CreationCollisionOption) | Task<StorageFile> | Saves an array of bytes to a `StorageFile` to well known folder |
96-
| WriteBytesToLocalCacheFileAsync(Byte[], String, CreationCollisionOption) | Task<StorageFile> | Saves an array of bytes to a `StorageFile` to application local cache folder |
97-
| WriteBytesToLocalFileAsync(Byte[], String, CreationCollisionOption) | Task<StorageFile> | Saves an array of bytes to a `StorageFile` to application local folder |
98-
| WriteTextToFileAsync(StorageFolder, String, String, CreationCollisionOption) | Task<StorageFile> | Saves a string value to a `StorageFile` in the given `StorageFolder` |
99-
| WriteTextToKnownFolderFileAsync(KnownFolderId, String, String, CreationCollisionOption) | Task<StorageFile> | Saves a string value to a Windows.Storage.StorageFile in well known folder |
100-
| WriteTextToLocalCacheFileAsync(String, String, CreationCollisionOption) | Task<StorageFile> | Saves a string value to a Windows.Storage.StorageFile in application local cache folder |
101-
| WriteTextToLocalFileAsync(String, String, CreationCollisionOption) | Task<StorageFile> | Saves a string value to a Windows.Storage.StorageFile in application local folder |
78+
| Methods | Return Type | Description |
79+
|------------------------------------------------------------------------------------------|-------------------------|--------------------------------------------------------------------------------------------|
80+
| FileExistsAsync(StorageFolder, String, Boolean) | Task&lt;bool&gt; | Gets a value indicating whether a file exists in the current folder |
81+
| IsFileNameValid(String) | bool | Gets a value indicating whether a filename is correct or not using the Storage feature |
82+
| IsFilePathValid(String) | bool | Gets a value indicating whether a file path is correct or not using the Storage feature |
83+
| ReadBytesAsync(StorageFile) | Task&lt;byte[]&gt; | Gets an array of bytes from a `StorageFile` |
84+
| ReadBytesFromFileAsync(StorageFolder, String) | Task&lt;byte[]&gt; | Gets an array of bytes from a `StorageFile` located in the given `StorageFolder` |
85+
| ReadBytesFromKnownFoldersFileAsync(KnownFolderId, String) | Task&lt;byte[]&gt; | Gets an array of bytes from a `StorageFile` located in a well known folder |
86+
| ReadBytesFromLocalCacheFileAsync(String) | Task&lt;byte[]&gt; | Gets an array of bytes from a `StorageFile` located in the application local cache folder |
87+
| ReadBytesFromLocalFileAsync(String) | Task&lt;byte[]&gt; | Gets an array of bytes from a `StorageFile` located in the application local folder |
88+
| ReadBytesFromPackagedFileAsync(String) | Task&lt;byte[]&gt; | Gets an array of bytes from a `StorageFile` located in the application installation folder |
89+
| ReadTextFromFileAsync(StorageFolder, String) | Task&lt;string&gt; | Gets a string value from a `StorageFile` located in the given `StorageFolder` |
90+
| ReadTextFromKnownFoldersFileAsync(KnownFolderId, String) | Task&lt;string&gt; | Gets a string value from a `StorageFile` located in a well known folder |
91+
| ReadTextFromLocalCacheFileAsync(String) | Task&lt;string&gt; | Gets a string value from a `StorageFile` located in the application local cache folder |
92+
| ReadTextFromLocalFileAsync(String) | Task&lt;string&gt; | Gets a string value from a `StorageFile` located in the application local folder |
93+
| ReadTextFromPackagedFileAsync(String) | Task&lt;string&gt; | Gets a string value from a `StorageFile` located in the application installation folder |
94+
| WriteBytesToFileAsync(StorageFolder, Byte[], String, CreationCollisionOption) | Task&lt;StorageFile&gt; | Saves an array of bytes to a `StorageFile` in the given `StorageFolder` |
95+
| WriteBytesToKnownFolderFileAsync(KnownFolderId, Byte[], String, CreationCollisionOption) | Task&lt;StorageFile&gt; | Saves an array of bytes to a `StorageFile` to well known folder |
96+
| WriteBytesToLocalCacheFileAsync(Byte[], String, CreationCollisionOption) | Task&lt;StorageFile&gt; | Saves an array of bytes to a `StorageFile` to application local cache folder |
97+
| WriteBytesToLocalFileAsync(Byte[], String, CreationCollisionOption) | Task&lt;StorageFile&gt; | Saves an array of bytes to a `StorageFile` to application local folder |
98+
| WriteTextToFileAsync(StorageFolder, String, String, CreationCollisionOption) | Task&lt;StorageFile&gt; | Saves a string value to a `StorageFile` in the given `StorageFolder` |
99+
| WriteTextToKnownFolderFileAsync(KnownFolderId, String, String, CreationCollisionOption) | Task&lt;StorageFile&gt; | Saves a string value to a Windows.Storage.StorageFile in well known folder |
100+
| WriteTextToLocalCacheFileAsync(String, String, CreationCollisionOption) | Task&lt;StorageFile&gt; | Saves a string value to a Windows.Storage.StorageFile in application local cache folder |
101+
| WriteTextToLocalFileAsync(String, String, CreationCollisionOption) | Task&lt;StorageFile&gt; | Saves a string value to a Windows.Storage.StorageFile in application local folder |
102102

103103
## Sample Code
104104

0 commit comments

Comments
 (0)