Revert "[TFM] Update TizenFX TFM to net6.0 (#5360)" (#5436)
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.IO.IsolatedStorage.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.IO.IsolatedStorage</name>
5   </assembly>
6   <members>
7     <member name="T:System.IO.IsolatedStorage.INormalizeForIsolatedStorage">
8       <summary>Enables comparisons between an isolated store and an application domain and assembly's evidence.</summary>
9     </member>
10     <member name="M:System.IO.IsolatedStorage.INormalizeForIsolatedStorage.Normalize">
11       <summary>When overridden in a derived class, returns a normalized copy of the object on which it is called.</summary>
12       <returns>A normalized object that represents the instance on which this method was called. This instance can be a string, stream, or any serializable object.</returns>
13     </member>
14     <member name="T:System.IO.IsolatedStorage.IsolatedStorage">
15       <summary>Represents the abstract base class from which all isolated storage implementations must derive.</summary>
16     </member>
17     <member name="M:System.IO.IsolatedStorage.IsolatedStorage.#ctor">
18       <summary>Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> class.</summary>
19     </member>
20     <member name="P:System.IO.IsolatedStorage.IsolatedStorage.ApplicationIdentity">
21       <summary>Gets an application identity that scopes isolated storage.</summary>
22       <returns>An <see cref="T:System.Object" /> that represents the <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Application" /> identity.</returns>
23       <exception cref="T:System.Security.SecurityException">The code lacks the required <see cref="T:System.Security.Permissions.SecurityPermission" /> to access this object. These permissions are granted by the runtime based on security policy.</exception>
24       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object is not isolated by the application <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" />.</exception>
25     </member>
26     <member name="P:System.IO.IsolatedStorage.IsolatedStorage.AssemblyIdentity">
27       <summary>Gets an assembly identity used to scope isolated storage.</summary>
28       <returns>An <see cref="T:System.Object" /> that represents the <see cref="T:System.Reflection.Assembly" /> identity.</returns>
29       <exception cref="T:System.Security.SecurityException">The code lacks the required <see cref="T:System.Security.Permissions.SecurityPermission" /> to access this object.</exception>
30       <exception cref="T:System.InvalidOperationException">The assembly is not defined.</exception>
31     </member>
32     <member name="P:System.IO.IsolatedStorage.IsolatedStorage.AvailableFreeSpace">
33       <summary>When overridden in a derived class, gets the available free space for isolated storage, in bytes.</summary>
34       <returns>The available free space for isolated storage, in bytes.</returns>
35       <exception cref="T:System.InvalidOperationException">An operation was performed that requires access to <see cref="P:System.IO.IsolatedStorage.IsolatedStorage.AvailableFreeSpace" />, but that property is not defined for this store. Stores that are obtained by using enumerations do not have a well-defined <see cref="P:System.IO.IsolatedStorage.IsolatedStorage.AvailableFreeSpace" /> property, because partial evidence is used to open the store.</exception>
36     </member>
37     <member name="P:System.IO.IsolatedStorage.IsolatedStorage.CurrentSize">
38       <summary>Gets a value representing the current size of isolated storage.</summary>
39       <returns>The number of storage units currently used within the isolated storage scope.</returns>
40       <exception cref="T:System.InvalidOperationException">The current size of the isolated store is undefined.</exception>
41     </member>
42     <member name="P:System.IO.IsolatedStorage.IsolatedStorage.DomainIdentity">
43       <summary>Gets a domain identity that scopes isolated storage.</summary>
44       <returns>An <see cref="T:System.Object" /> that represents the <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Domain" /> identity.</returns>
45       <exception cref="T:System.Security.SecurityException">The code lacks the required <see cref="T:System.Security.Permissions.SecurityPermission" /> to access this object. These permissions are granted by the runtime based on security policy.</exception>
46       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object is not isolated by the domain <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" />.</exception>
47     </member>
48     <member name="M:System.IO.IsolatedStorage.IsolatedStorage.IncreaseQuotaTo(System.Int64)">
49       <summary>When overridden in a derived class, prompts a user to approve a larger quota size, in bytes, for isolated storage.</summary>
50       <param name="newQuotaSize">The requested new quota size, in bytes, for the user to approve.</param>
51       <returns>
52         <see langword="false" /> in all cases.</returns>
53     </member>
54     <member name="M:System.IO.IsolatedStorage.IsolatedStorage.InitStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Type)">
55       <summary>Initializes a new <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object.</summary>
56       <param name="scope">A bitwise combination of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> values.</param>
57       <param name="appEvidenceType">The type of <see cref="T:System.Security.Policy.Evidence" /> that you can choose from the list of <see cref="T:System.Security.Policy.Evidence" /> for the calling application. <see langword="null" /> lets the <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object choose the evidence.</param>
58       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The assembly specified has insufficient permissions to create isolated stores.</exception>
59     </member>
60     <member name="M:System.IO.IsolatedStorage.IsolatedStorage.InitStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Type,System.Type)">
61       <summary>Initializes a new <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object.</summary>
62       <param name="scope">A bitwise combination of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> values.</param>
63       <param name="domainEvidenceType">The type of <see cref="T:System.Security.Policy.Evidence" /> that you can choose from the list of <see cref="T:System.Security.Policy.Evidence" /> present in the domain of the calling application. <see langword="null" /> lets the <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object choose the evidence.</param>
64       <param name="assemblyEvidenceType">The type of <see cref="T:System.Security.Policy.Evidence" /> that you can choose from the list of <see cref="T:System.Security.Policy.Evidence" /> present in the assembly of the calling application. <see langword="null" /> lets the <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object choose the evidence.</param>
65       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The assembly specified has insufficient permissions to create isolated stores.</exception>
66     </member>
67     <member name="P:System.IO.IsolatedStorage.IsolatedStorage.MaximumSize">
68       <summary>Gets a value representing the maximum amount of space available for isolated storage. When overridden in a derived class, this value can take different units of measure.</summary>
69       <returns>The maximum amount of isolated storage space in bytes. Derived classes can return different units of value.</returns>
70       <exception cref="T:System.InvalidOperationException">The quota has not been defined.</exception>
71     </member>
72     <member name="P:System.IO.IsolatedStorage.IsolatedStorage.Quota">
73       <summary>When overridden in a derived class, gets a value that represents the maximum amount of space available for isolated storage.</summary>
74       <returns>The limit of isolated storage space, in bytes.</returns>
75       <exception cref="T:System.InvalidOperationException">An operation was performed that requires access to <see cref="P:System.IO.IsolatedStorage.IsolatedStorage.Quota" />, but that property is not defined for this store. Stores that are obtained by using enumerations do not have a well-defined <see cref="P:System.IO.IsolatedStorage.IsolatedStorage.Quota" /> property, because partial evidence is used to open the store.</exception>
76     </member>
77     <member name="M:System.IO.IsolatedStorage.IsolatedStorage.Remove">
78       <summary>When overridden in a derived class, removes the individual isolated store and all contained data.</summary>
79     </member>
80     <member name="P:System.IO.IsolatedStorage.IsolatedStorage.Scope">
81       <summary>Gets an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> enumeration value specifying the scope used to isolate the store.</summary>
82       <returns>A bitwise combination of <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> values specifying the scope used to isolate the store.</returns>
83     </member>
84     <member name="P:System.IO.IsolatedStorage.IsolatedStorage.SeparatorExternal">
85       <summary>Gets a backslash character that can be used in a directory string. When overridden in a derived class, another character might be returned.</summary>
86       <returns>The default implementation returns the '\' (backslash) character.</returns>
87     </member>
88     <member name="P:System.IO.IsolatedStorage.IsolatedStorage.SeparatorInternal">
89       <summary>Gets a period character that can be used in a directory string. When overridden in a derived class, another character might be returned.</summary>
90       <returns>The default implementation returns the '.' (period) character.</returns>
91     </member>
92     <member name="P:System.IO.IsolatedStorage.IsolatedStorage.UsedSize">
93       <summary>When overridden in a derived class, gets a value that represents the amount of the space used for isolated storage.</summary>
94       <returns>The used amount of isolated storage space, in bytes.</returns>
95       <exception cref="T:System.InvalidOperationException">An operation was performed that requires access to <see cref="P:System.IO.IsolatedStorage.IsolatedStorage.UsedSize" />, but that property is not defined for this store. Stores that are obtained by using enumerations do not have a well-defined <see cref="P:System.IO.IsolatedStorage.IsolatedStorage.UsedSize" /> property, because partial evidence is used to open the store.</exception>
96     </member>
97     <member name="T:System.IO.IsolatedStorage.IsolatedStorageException">
98       <summary>The exception that is thrown when an operation in isolated storage fails.</summary>
99     </member>
100     <member name="M:System.IO.IsolatedStorage.IsolatedStorageException.#ctor">
101       <summary>Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageException" /> class with default properties.</summary>
102     </member>
103     <member name="M:System.IO.IsolatedStorage.IsolatedStorageException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
104       <summary>Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageException" /> class with serialized data.</summary>
105       <param name="info">The object that holds the serialized object data.</param>
106       <param name="context">The contextual information about the source or destination.</param>
107     </member>
108     <member name="M:System.IO.IsolatedStorage.IsolatedStorageException.#ctor(System.String)">
109       <summary>Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageException" /> class with a specified error message.</summary>
110       <param name="message">The error message that explains the reason for the exception.</param>
111     </member>
112     <member name="M:System.IO.IsolatedStorage.IsolatedStorageException.#ctor(System.String,System.Exception)">
113       <summary>Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
114       <param name="message">The error message that explains the reason for the exception.</param>
115       <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
116     </member>
117     <member name="T:System.IO.IsolatedStorage.IsolatedStorageFile">
118       <summary>Represents an isolated storage area containing files and directories.</summary>
119     </member>
120     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFile.AvailableFreeSpace">
121       <summary>Gets a value that represents the amount of free space available for isolated storage.</summary>
122       <returns>The available free space for isolated storage, in bytes.</returns>
123       <exception cref="T:System.InvalidOperationException">The isolated store is closed.</exception>
124       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
125 -or-
126 Isolated storage is disabled.</exception>
127       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
128     </member>
129     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.Close">
130       <summary>Closes a store previously opened with <see cref="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Type,System.Type)" />, <see cref="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForAssembly" />, or <see cref="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForDomain" />.</summary>
131     </member>
132     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.CopyFile(System.String,System.String)">
133       <summary>Copies an existing file to a new file.</summary>
134       <param name="sourceFileName">The name of the file to copy.</param>
135       <param name="destinationFileName">The name of the destination file. This cannot be a directory or an existing file.</param>
136       <exception cref="T:System.ArgumentException">
137         <paramref name="sourceFileName" /> or <paramref name="destinationFileName" /> is a zero-length string, contains only white space, or contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
138       <exception cref="T:System.ArgumentNullException">
139         <paramref name="sourceFileName" /> or <paramref name="destinationFileName" /> is <see langword="null" />.</exception>
140       <exception cref="T:System.InvalidOperationException">The isolated store has been closed.</exception>
141       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
142       <exception cref="T:System.IO.FileNotFoundException">
143         <paramref name="sourceFileName" /> was not found.</exception>
144       <exception cref="T:System.IO.DirectoryNotFoundException">
145         <paramref name="sourceFileName" /> was not found.</exception>
146       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
147 -or-
148 Isolated storage is disabled.
149 -or-
150 <paramref name="destinationFileName" /> exists.
151 -or-
152 An I/O error has occurred.</exception>
153     </member>
154     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.CopyFile(System.String,System.String,System.Boolean)">
155       <summary>Copies an existing file to a new file, and optionally overwrites an existing file.</summary>
156       <param name="sourceFileName">The name of the file to copy.</param>
157       <param name="destinationFileName">The name of the destination file. This cannot be a directory.</param>
158       <param name="overwrite">
159         <see langword="true" /> if the destination file can be overwritten; otherwise, <see langword="false" />.</param>
160       <exception cref="T:System.ArgumentException">
161         <paramref name="sourceFileName" /> or <paramref name="destinationFileName" /> is a zero-length string, contains only white space, or contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
162       <exception cref="T:System.ArgumentNullException">
163         <paramref name="sourceFileName" /> or <paramref name="destinationFileName" /> is <see langword="null" />.</exception>
164       <exception cref="T:System.InvalidOperationException">The isolated store has been closed.</exception>
165       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
166       <exception cref="T:System.IO.FileNotFoundException">
167         <paramref name="sourceFileName" /> was not found.</exception>
168       <exception cref="T:System.IO.DirectoryNotFoundException">
169         <paramref name="sourceFileName" /> was not found.</exception>
170       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
171 -or-
172 Isolated storage is disabled.
173 -or-
174 An I/O error has occurred.</exception>
175     </member>
176     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.CreateDirectory(System.String)">
177       <summary>Creates a directory in the isolated storage scope.</summary>
178       <param name="dir">The relative path of the directory to create within the isolated storage scope.</param>
179       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The current code has insufficient permissions to create isolated storage directory.</exception>
180       <exception cref="T:System.ArgumentNullException">The directory path is <see langword="null" />.</exception>
181     </member>
182     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.CreateFile(System.String)">
183       <summary>Creates a file in the isolated store.</summary>
184       <param name="path">The relative path of the file to create.</param>
185       <returns>A new isolated storage file.</returns>
186       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
187 -or-
188 Isolated storage is disabled.</exception>
189       <exception cref="T:System.ArgumentException">
190         <paramref name="path" /> is malformed.</exception>
191       <exception cref="T:System.ArgumentNullException">
192         <paramref name="path" /> is <see langword="null" />.</exception>
193       <exception cref="T:System.IO.DirectoryNotFoundException">The directory in <paramref name="path" /> does not exist.</exception>
194       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
195     </member>
196     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFile.CurrentSize">
197       <summary>Gets the current size of the isolated storage.</summary>
198       <returns>The total number of bytes of storage currently in use within the isolated storage scope.</returns>
199       <exception cref="T:System.InvalidOperationException">The property is unavailable. The current store has a roaming scope or is not open.</exception>
200       <exception cref="T:System.ObjectDisposedException">The current object size is undefined.</exception>
201     </member>
202     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.DeleteDirectory(System.String)">
203       <summary>Deletes a directory in the isolated storage scope.</summary>
204       <param name="dir">The relative path of the directory to delete within the isolated storage scope.</param>
205       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The directory could not be deleted.</exception>
206       <exception cref="T:System.ArgumentNullException">The directory path was <see langword="null" />.</exception>
207     </member>
208     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.DeleteFile(System.String)">
209       <summary>Deletes a file in the isolated storage scope.</summary>
210       <param name="file">The relative path of the file to delete within the isolated storage scope.</param>
211       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The target file is open or the path is incorrect.</exception>
212       <exception cref="T:System.ArgumentNullException">The file path is <see langword="null" />.</exception>
213     </member>
214     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.DirectoryExists(System.String)">
215       <summary>Determines whether the specified path refers to an existing directory in the isolated store.</summary>
216       <param name="path">The path to test.</param>
217       <returns>
218         <see langword="true" /> if <paramref name="path" /> refers to an existing directory in the isolated store and is not <see langword="null" />; otherwise, <see langword="false" />.</returns>
219       <exception cref="T:System.ArgumentNullException">
220         <paramref name="path" /> is <see langword="null" />.</exception>
221       <exception cref="T:System.InvalidOperationException">The isolated store is closed.</exception>
222       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
223       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
224 -or-
225 Isolated storage is disabled.</exception>
226     </member>
227     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.Dispose">
228       <summary>Releases all resources used by the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" />.</summary>
229     </member>
230     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.FileExists(System.String)">
231       <summary>Determines whether the specified path refers to an existing file in the isolated store.</summary>
232       <param name="path">The path and file name to test.</param>
233       <returns>
234         <see langword="true" /> if <paramref name="path" /> refers to an existing file in the isolated store and is not <see langword="null" />; otherwise, <see langword="false" />.</returns>
235       <exception cref="T:System.ArgumentNullException">
236         <paramref name="path" /> is <see langword="null" />.</exception>
237       <exception cref="T:System.InvalidOperationException">The isolated store is closed.</exception>
238       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
239       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.</exception>
240     </member>
241     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.Finalize">
242       <summary>Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.</summary>
243     </member>
244     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetCreationTime(System.String)">
245       <summary>Returns the creation date and time of a specified file or directory.</summary>
246       <param name="path">The path to the file or directory for which to obtain creation date and time information.</param>
247       <returns>The creation date and time for the specified file or directory. This value is expressed in local time.</returns>
248       <exception cref="T:System.ArgumentException">
249         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
250       <exception cref="T:System.ArgumentNullException">
251         <paramref name="path" /> is <see langword="null" />.</exception>
252       <exception cref="T:System.InvalidOperationException">The isolated store has been closed.</exception>
253       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
254       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
255 -or-
256 Isolated storage is disabled.</exception>
257     </member>
258     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetDirectoryNames">
259       <summary>Enumerates the directories at the root of an isolated store.</summary>
260       <returns>An array of relative paths of directories at the root of the isolated store. A zero-length array specifies that there are no directories at the root.</returns>
261       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
262       <exception cref="T:System.InvalidOperationException">The isolated store is closed.</exception>
263       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.</exception>
264       <exception cref="T:System.UnauthorizedAccessException">Caller does not have permission to enumerate directories.</exception>
265       <exception cref="T:System.IO.DirectoryNotFoundException">One or more directories are not found.</exception>
266     </member>
267     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetDirectoryNames(System.String)">
268       <summary>Enumerates the directories in an isolated storage scope that match a given search pattern.</summary>
269       <param name="searchPattern">A search pattern. Both single-character ("?") and multi-character ("*") wildcards are supported.</param>
270       <returns>An array of the relative paths of directories in the isolated storage scope that match <paramref name="searchPattern" />. A zero-length array specifies that there are no directories that match.</returns>
271       <exception cref="T:System.ArgumentNullException">
272         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
273       <exception cref="T:System.InvalidOperationException">The isolated store is closed.</exception>
274       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
275       <exception cref="T:System.UnauthorizedAccessException">Caller does not have permission to enumerate directories resolved from <paramref name="searchPattern" />.</exception>
276       <exception cref="T:System.IO.DirectoryNotFoundException">The directory or directories specified by <paramref name="searchPattern" /> are not found.</exception>
277       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.</exception>
278     </member>
279     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetEnumerator(System.IO.IsolatedStorage.IsolatedStorageScope)">
280       <summary>Gets the enumerator for the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> stores within an isolated storage scope.</summary>
281       <param name="scope">Represents the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> for which to return isolated stores. <see langword="User" /> and <see langword="User|Roaming" /> are the only <see langword="IsolatedStorageScope" /> combinations supported.</param>
282       <returns>Enumerator for the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> stores within the specified isolated storage scope.</returns>
283     </member>
284     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetFileNames">
285       <summary>Enumerates the file names at the root of an isolated store.</summary>
286       <returns>An array of relative paths of files at the root of the isolated store.  A zero-length array specifies that there are no files at the root.</returns>
287       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.</exception>
288       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
289       <exception cref="T:System.IO.DirectoryNotFoundException">File paths from the isolated store root cannot be determined.</exception>
290     </member>
291     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetFileNames(System.String)">
292       <summary>Gets the file names that match a search pattern.</summary>
293       <param name="searchPattern">A search pattern. Both single-character ("?") and multi-character ("*") wildcards are supported.</param>
294       <returns>An array of relative paths of files in the isolated storage scope that match <paramref name="searchPattern" />. A zero-length array specifies that there are no files that match.</returns>
295       <exception cref="T:System.ArgumentNullException">
296         <paramref name="searchPattern" /> is <see langword="null" />.</exception>
297       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
298       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.</exception>
299       <exception cref="T:System.IO.DirectoryNotFoundException">The file path specified by <paramref name="searchPattern" /> cannot be found.</exception>
300     </member>
301     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetLastAccessTime(System.String)">
302       <summary>Returns the date and time a specified file or directory was last accessed.</summary>
303       <param name="path">The path to the file or directory for which to obtain last access date and time information.</param>
304       <returns>The date and time that the specified file or directory was last accessed. This value is expressed in local time.</returns>
305       <exception cref="T:System.ArgumentException">
306         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
307       <exception cref="T:System.ArgumentNullException">
308         <paramref name="path" /> is <see langword="null" />.</exception>
309       <exception cref="T:System.InvalidOperationException">The isolated store has been closed.</exception>
310       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
311       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
312 -or-
313 Isolated storage is disabled.</exception>
314     </member>
315     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetLastWriteTime(System.String)">
316       <summary>Returns the date and time a specified file or directory was last written to.</summary>
317       <param name="path">The path to the file or directory for which to obtain last write date and time information.</param>
318       <returns>The date and time that the specified file or directory was last written to. This value is expressed in local time.</returns>
319       <exception cref="T:System.ArgumentException">
320         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
321       <exception cref="T:System.ArgumentNullException">
322         <paramref name="path" /> is <see langword="null" />.</exception>
323       <exception cref="T:System.InvalidOperationException">The isolated store has been closed.</exception>
324       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
325       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
326 -or-
327 Isolated storage is disabled.</exception>
328     </member>
329     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetMachineStoreForApplication">
330       <summary>Obtains machine-scoped isolated storage corresponding to the calling code's application identity.</summary>
331       <returns>An object corresponding to the isolated storage scope based on the calling code's application identity.</returns>
332       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The application identity of the caller could not be determined.
333 -or-
334 The granted permission set for the application domain could not be determined.
335 -or-
336 An isolated storage location cannot be initialized.</exception>
337       <exception cref="T:System.Security.SecurityException">Sufficient isolated storage permissions have not been granted.</exception>
338     </member>
339     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetMachineStoreForAssembly">
340       <summary>Obtains machine-scoped isolated storage corresponding to the calling code's assembly identity.</summary>
341       <returns>An object corresponding to the isolated storage scope based on the calling code's assembly identity.</returns>
342       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">An isolated storage location cannot be initialized.</exception>
343       <exception cref="T:System.Security.SecurityException">Sufficient isolated storage permissions have not been granted.</exception>
344     </member>
345     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetMachineStoreForDomain">
346       <summary>Obtains machine-scoped isolated storage corresponding to the application domain identity and the assembly identity.</summary>
347       <returns>An object corresponding to the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" />, based on a combination of the application domain identity and the assembly identity.</returns>
348       <exception cref="T:System.Security.SecurityException">Sufficient isolated storage permissions have not been granted.</exception>
349       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The store failed to open.
350 -or-
351 The assembly specified has insufficient permissions to create isolated stores.
352 -or-
353 The permissions for the application domain cannot be determined.
354 -or-
355 An isolated storage location cannot be initialized.</exception>
356     </member>
357     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Object)">
358       <summary>Obtains isolated storage corresponding to the given application identity.</summary>
359       <param name="scope">A bitwise combination of the enumeration values.</param>
360       <param name="applicationIdentity">An object that contains evidence for the application identity.</param>
361       <returns>An object that represents the parameters.</returns>
362       <exception cref="T:System.Security.SecurityException">Sufficient isolated storage permissions have not been granted.</exception>
363       <exception cref="T:System.ArgumentNullException">The  <paramref name="applicationIdentity" /> identity has not been passed in.</exception>
364       <exception cref="T:System.ArgumentException">The <paramref name="scope" /> is invalid.</exception>
365       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">An isolated storage location cannot be initialized.
366 -or-
367 <paramref name="scope" /> contains the enumeration value <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Application" />, but the application identity of the caller cannot be determined,because the <see cref="P:System.AppDomain.ActivationContext" /> for  the current application domain returned <see langword="null" />.
368 -or-
369 <paramref name="scope" /> contains the value <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Domain" />, but the permissions for the application domain cannot be determined.
370 -or-
371 <paramref name="scope" /> contains the value <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Assembly" />, but the permissions for the calling assembly cannot be determined.</exception>
372     </member>
373     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Object,System.Object)">
374       <summary>Obtains the isolated storage corresponding to the given application domain and assembly evidence objects.</summary>
375       <param name="scope">A bitwise combination of the enumeration values.</param>
376       <param name="domainIdentity">An object that contains evidence for the application domain identity.</param>
377       <param name="assemblyIdentity">An object that contains evidence for the code assembly identity.</param>
378       <returns>An object that represents the parameters.</returns>
379       <exception cref="T:System.Security.SecurityException">Sufficient isolated storage permissions have not been granted.</exception>
380       <exception cref="T:System.ArgumentNullException">Neither <paramref name="domainIdentity" /> nor <paramref name="assemblyIdentity" /> has been passed in. This verifies that the correct constructor is being used.
381 -or-
382 Either <paramref name="domainIdentity" /> or <paramref name="assemblyIdentity" /> is <see langword="null" />.</exception>
383       <exception cref="T:System.ArgumentException">The <paramref name="scope" /> is invalid.</exception>
384       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">An isolated storage location cannot be initialized.
385 -or-
386 <paramref name="scope" /> contains the enumeration value <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Application" />, but the application identity of the caller cannot be determined, because the <see cref="P:System.AppDomain.ActivationContext" /> for  the current application domain returned <see langword="null" />.
387 -or-
388 <paramref name="scope" /> contains the value <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Domain" />, but the permissions for the application domain cannot be determined.
389 -or-
390 <paramref name="scope" /> contains the value <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Assembly" />, but the permissions for the calling assembly cannot be determined.</exception>
391     </member>
392     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Type)">
393       <summary>Obtains isolated storage corresponding to the isolation scope and the application identity object.</summary>
394       <param name="scope">A bitwise combination of the enumeration values.</param>
395       <param name="applicationEvidenceType">An object that contains the application identity.</param>
396       <returns>An object that represents the parameters.</returns>
397       <exception cref="T:System.Security.SecurityException">Sufficient isolated storage permissions have not been granted.</exception>
398       <exception cref="T:System.ArgumentNullException">The   <paramref name="applicationEvidence" /> identity has not been passed in.</exception>
399       <exception cref="T:System.ArgumentException">The <paramref name="scope" /> is invalid.</exception>
400       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">An isolated storage location cannot be initialized.
401 -or-
402 <paramref name="scope" /> contains the enumeration value <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Application" />, but the application identity of the caller cannot be determined, because the <see cref="P:System.AppDomain.ActivationContext" /> for  the current application domain returned <see langword="null" />.
403 -or-
404 <paramref name="scope" /> contains the value <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Domain" />, but the permissions for the application domain cannot be determined.
405 -or-
406 <paramref name="scope" /> contains the value <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Assembly" />, but the permissions for the calling assembly cannot be determined.</exception>
407     </member>
408     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(System.IO.IsolatedStorage.IsolatedStorageScope,System.Type,System.Type)">
409       <summary>Obtains isolated storage corresponding to the isolated storage scope given the application domain and assembly evidence types.</summary>
410       <param name="scope">A bitwise combination of the enumeration values.</param>
411       <param name="domainEvidenceType">The type of the <see cref="T:System.Security.Policy.Evidence" /> that you can chose from the list of <see cref="T:System.Security.Policy.Evidence" /> present in the domain of the calling application. <see langword="null" /> lets the <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object choose the evidence.</param>
412       <param name="assemblyEvidenceType">The type of the <see cref="T:System.Security.Policy.Evidence" /> that you can chose from the list of <see cref="T:System.Security.Policy.Evidence" /> present in the domain of the calling application. <see langword="null" /> lets the <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" /> object choose the evidence.</param>
413       <returns>An object that represents the parameters.</returns>
414       <exception cref="T:System.Security.SecurityException">Sufficient isolated storage permissions have not been granted.</exception>
415       <exception cref="T:System.ArgumentException">The <paramref name="scope" /> is invalid.</exception>
416       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The evidence type provided is missing in the assembly evidence list.
417 -or-
418 An isolated storage location cannot be initialized.
419 -or-
420 <paramref name="scope" /> contains the enumeration value <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Application" />, but the application identity of the caller cannot be determined, because the <see cref="P:System.AppDomain.ActivationContext" /> for  the current application domain returned <see langword="null" />.
421 -or-
422 <paramref name="scope" /> contains the value <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Domain" />, but the permissions for the application domain cannot be determined.
423 -or-
424 <paramref name="scope" /> contains <see cref="F:System.IO.IsolatedStorage.IsolatedStorageScope.Assembly" />, but the permissions for the calling assembly cannot be determined.</exception>
425     </member>
426     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForApplication">
427       <summary>Obtains user-scoped isolated storage corresponding to the calling code's application identity.</summary>
428       <returns>An object corresponding to the isolated storage scope based on the calling code's assembly identity.</returns>
429       <exception cref="T:System.Security.SecurityException">Sufficient isolated storage permissions have not been granted.</exception>
430       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">An isolated storage location cannot be initialized.
431 -or-
432 The application identity of the caller cannot be determined, because the <see cref="P:System.AppDomain.ActivationContext" /> property returned <see langword="null" />.
433 -or-
434 The permissions for the application domain cannot be determined.</exception>
435     </member>
436     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForAssembly">
437       <summary>Obtains user-scoped isolated storage corresponding to the calling code's assembly identity.</summary>
438       <returns>An object corresponding to the isolated storage scope based on the calling code's assembly identity.</returns>
439       <exception cref="T:System.Security.SecurityException">Sufficient isolated storage permissions have not been granted.</exception>
440       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">An isolated storage location cannot be initialized.
441 -or-
442 The permissions for the calling assembly cannot be determined.</exception>
443     </member>
444     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForDomain">
445       <summary>Obtains user-scoped isolated storage corresponding to the application domain identity and assembly identity.</summary>
446       <returns>An object corresponding to the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" />, based on a combination of the application domain identity and the assembly identity.</returns>
447       <exception cref="T:System.Security.SecurityException">Sufficient isolated storage permissions have not been granted.</exception>
448       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The store failed to open.
449 -or-
450 The assembly specified has insufficient permissions to create isolated stores.
451 -or-
452 An isolated storage location cannot be initialized.
453 -or-
454 The permissions for the application domain cannot be determined.</exception>
455     </member>
456     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForSite">
457       <summary>Obtains a user-scoped isolated store for use by applications in a virtual host domain.</summary>
458       <returns>The isolated storage file that corresponds to the isolated storage scope based on the calling code's application identity.</returns>
459     </member>
460     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.IncreaseQuotaTo(System.Int64)">
461       <summary>Enables an application to explicitly request a larger quota size, in bytes.</summary>
462       <param name="newQuotaSize">The requested size, in bytes.</param>
463       <returns>
464         <see langword="true" /> if the new quota is accepted; otherwise, <see langword="false" />.</returns>
465       <exception cref="T:System.ArgumentException">
466         <paramref name="newQuotaSize" /> is less than current quota size.</exception>
467       <exception cref="T:System.ArgumentOutOfRangeException">
468         <paramref name="newQuotaSize" /> is less than zero, or less than or equal to the current quota size.</exception>
469       <exception cref="T:System.InvalidOperationException">The isolated store has been closed.</exception>
470       <exception cref="T:System.NotSupportedException">The current scope is not for an application user.</exception>
471       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
472       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
473 -or-
474 Isolated storage is disabled.</exception>
475     </member>
476     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFile.IsEnabled">
477       <summary>Gets a value that indicates whether isolated storage is enabled.</summary>
478       <returns>
479         <see langword="true" /> in all cases.</returns>
480     </member>
481     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFile.MaximumSize">
482       <summary>Gets a value representing the maximum amount of space available for isolated storage within the limits established by the quota.</summary>
483       <returns>The limit of isolated storage space in bytes.</returns>
484       <exception cref="T:System.InvalidOperationException">The property is unavailable. <see cref="P:System.IO.IsolatedStorage.IsolatedStorageFile.MaximumSize" /> cannot be determined without evidence from the assembly's creation. The evidence could not be determined when the object was created.</exception>
485       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">An isolated storage error occurred.</exception>
486     </member>
487     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.MoveDirectory(System.String,System.String)">
488       <summary>Moves a specified directory and its contents to a new location.</summary>
489       <param name="sourceDirectoryName">The name of the directory to move.</param>
490       <param name="destinationDirectoryName">The path to the new location for <paramref name="sourceDirectoryName" />. This cannot be the path to an existing directory.</param>
491       <exception cref="T:System.ArgumentException">
492         <paramref name="sourceFileName" /> or <paramref name="destinationFileName" /> is a zero-length string, contains only white space, or contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
493       <exception cref="T:System.ArgumentNullException">
494         <paramref name="sourceFileName" /> or <paramref name="destinationFileName" /> is <see langword="null" />.</exception>
495       <exception cref="T:System.InvalidOperationException">The isolated store has been closed.</exception>
496       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
497       <exception cref="T:System.IO.DirectoryNotFoundException">
498         <paramref name="sourceDirectoryName" /> does not exist.</exception>
499       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
500 -or-
501 Isolated storage is disabled.
502 -or-
503 <paramref name="destinationDirectoryName" /> already exists.
504 -or-
505 <paramref name="sourceDirectoryName" /> and <paramref name="destinationDirectoryName" /> refer to the same directory.</exception>
506     </member>
507     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.MoveFile(System.String,System.String)">
508       <summary>Moves a specified file to a new location, and optionally lets you specify a new file name.</summary>
509       <param name="sourceFileName">The name of the file to move.</param>
510       <param name="destinationFileName">The path to the new location for the file. If a file name is included, the moved file will have that name.</param>
511       <exception cref="T:System.ArgumentException">
512         <paramref name="sourceFileName" /> or <paramref name="destinationFileName" /> is a zero-length string, contains only white space, or contains one or more invalid characters defined by the <see cref="M:System.IO.Path.GetInvalidPathChars" /> method.</exception>
513       <exception cref="T:System.ArgumentNullException">
514         <paramref name="sourceFileName" /> or <paramref name="destinationFileName" /> is <see langword="null" />.</exception>
515       <exception cref="T:System.InvalidOperationException">The isolated store has been closed.</exception>
516       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
517       <exception cref="T:System.IO.FileNotFoundException">
518         <paramref name="sourceFileName" /> was not found.</exception>
519       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
520 -or-
521 Isolated storage is disabled.</exception>
522     </member>
523     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.OpenFile(System.String,System.IO.FileMode)">
524       <summary>Opens a file in the specified mode.</summary>
525       <param name="path">The relative path of the file within the isolated store.</param>
526       <param name="mode">One of the enumeration values that specifies how to open the file.</param>
527       <returns>A file that is opened in the specified mode, with read/write access, and is unshared.</returns>
528       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
529 -or-
530 Isolated storage is disabled.</exception>
531       <exception cref="T:System.ArgumentException">
532         <paramref name="path" /> is malformed.</exception>
533       <exception cref="T:System.ArgumentNullException">
534         <paramref name="path" /> is <see langword="null" />.</exception>
535       <exception cref="T:System.IO.DirectoryNotFoundException">The directory in <paramref name="path" /> does not exist.</exception>
536       <exception cref="T:System.IO.FileNotFoundException">No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />.</exception>
537       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
538     </member>
539     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.OpenFile(System.String,System.IO.FileMode,System.IO.FileAccess)">
540       <summary>Opens a file in the specified mode with the specified read/write access.</summary>
541       <param name="path">The relative path of the file within the isolated store.</param>
542       <param name="mode">One of the enumeration values that specifies how to open the file.</param>
543       <param name="access">One of the enumeration values that specifies whether the file will be opened with read, write, or read/write access.</param>
544       <returns>A file that is opened in the specified mode and access, and is unshared.</returns>
545       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
546 -or-
547 Isolated storage is disabled.</exception>
548       <exception cref="T:System.ArgumentException">
549         <paramref name="path" /> is malformed.</exception>
550       <exception cref="T:System.ArgumentNullException">
551         <paramref name="path" /> is <see langword="null" />.</exception>
552       <exception cref="T:System.IO.DirectoryNotFoundException">The directory in <paramref name="path" /> does not exist.</exception>
553       <exception cref="T:System.IO.FileNotFoundException">No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />.</exception>
554       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
555     </member>
556     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.OpenFile(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
557       <summary>Opens a file in the specified mode, with the specified read/write access and sharing permission.</summary>
558       <param name="path">The relative path of the file within the isolated store.</param>
559       <param name="mode">One of the enumeration values that specifies how to open or create the file.</param>
560       <param name="access">One of the enumeration values that specifies whether the file will be opened with read, write, or read/write access</param>
561       <param name="share">A bitwise combination of enumeration values that specify the type of access other <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> objects have to this file.</param>
562       <returns>A file that is opened in the specified mode and access, and with the specified sharing options.</returns>
563       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
564 -or-
565 Isolated storage is disabled.</exception>
566       <exception cref="T:System.ArgumentException">
567         <paramref name="path" /> is malformed.</exception>
568       <exception cref="T:System.ArgumentNullException">
569         <paramref name="path" /> is <see langword="null" />.</exception>
570       <exception cref="T:System.IO.DirectoryNotFoundException">The directory in <paramref name="path" /> does not exist.</exception>
571       <exception cref="T:System.IO.FileNotFoundException">No file was found and the <paramref name="mode" /> is set to <see cref="M:System.IO.FileInfo.Open(System.IO.FileMode)" />.</exception>
572       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
573     </member>
574     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFile.Quota">
575       <summary>Gets a value that represents the maximum amount of space available for isolated storage.</summary>
576       <returns>The limit of isolated storage space, in bytes.</returns>
577       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.
578 -or-
579 Isolated storage is disabled.</exception>
580       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
581     </member>
582     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.Remove">
583       <summary>Removes the isolated storage scope and all its contents.</summary>
584       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store cannot be deleted.</exception>
585     </member>
586     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFile.Remove(System.IO.IsolatedStorage.IsolatedStorageScope)">
587       <summary>Removes the specified isolated storage scope for all identities.</summary>
588       <param name="scope">A bitwise combination of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageScope" /> values.</param>
589       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store cannot be removed.</exception>
590     </member>
591     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFile.UsedSize">
592       <summary>Gets a value that represents the amount of the space used for isolated storage.</summary>
593       <returns>The used isolated storage space, in bytes.</returns>
594       <exception cref="T:System.InvalidOperationException">The isolated store has been closed.</exception>
595       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The isolated store has been removed.</exception>
596       <exception cref="T:System.ObjectDisposedException">The isolated store has been disposed.</exception>
597     </member>
598     <member name="T:System.IO.IsolatedStorage.IsolatedStorageFileStream">
599       <summary>Exposes a file within isolated storage.</summary>
600     </member>
601     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode)">
602       <summary>Initializes a new instance of an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object giving access to the file designated by <paramref name="path" /> in the specified <paramref name="mode" />.</summary>
603       <param name="path">The relative path of the file within isolated storage.</param>
604       <param name="mode">One of the <see cref="T:System.IO.FileMode" /> values.</param>
605       <exception cref="T:System.ArgumentException">The <paramref name="path" /> is badly formed.</exception>
606       <exception cref="T:System.ArgumentNullException">The <paramref name="path" /> is <see langword="null" />.</exception>
607       <exception cref="T:System.IO.DirectoryNotFoundException">The directory in <paramref name="path" /> does not exist.</exception>
608       <exception cref="T:System.IO.FileNotFoundException">No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" /></exception>
609     </member>
610     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess)">
611       <summary>Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" />, in the specified <paramref name="mode" />, with the kind of <paramref name="access" /> requested.</summary>
612       <param name="path">The relative path of the file within isolated storage.</param>
613       <param name="mode">One of the <see cref="T:System.IO.FileMode" /> values.</param>
614       <param name="access">A bitwise combination of the <see cref="T:System.IO.FileAccess" /> values.</param>
615       <exception cref="T:System.ArgumentException">The <paramref name="path" /> is badly formed.</exception>
616       <exception cref="T:System.ArgumentNullException">The <paramref name="path" /> is <see langword="null" />.</exception>
617       <exception cref="T:System.IO.FileNotFoundException">No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />.</exception>
618     </member>
619     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
620       <summary>Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" />, in the specified <paramref name="mode" />, with the specified file <paramref name="access" />, using the file sharing mode specified by <paramref name="share" />.</summary>
621       <param name="path">The relative path of the file within isolated storage.</param>
622       <param name="mode">One of the <see cref="T:System.IO.FileMode" /> values.</param>
623       <param name="access">A bitwise combination of the <see cref="T:System.IO.FileAccess" /> values.</param>
624       <param name="share">A bitwise combination of the <see cref="T:System.IO.FileShare" /> values.</param>
625       <exception cref="T:System.ArgumentException">The <paramref name="path" /> is badly formed.</exception>
626       <exception cref="T:System.ArgumentNullException">The <paramref name="path" /> is <see langword="null" />.</exception>
627       <exception cref="T:System.IO.FileNotFoundException">No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />.</exception>
628     </member>
629     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32)">
630       <summary>Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" />, in the specified <paramref name="mode" />, with the specified file <paramref name="access" />, using the file sharing mode specified by <paramref name="share" />, with the <paramref name="buffersize" /> specified.</summary>
631       <param name="path">The relative path of the file within isolated storage.</param>
632       <param name="mode">One of the <see cref="T:System.IO.FileMode" /> values.</param>
633       <param name="access">A bitwise combination of the <see cref="T:System.IO.FileAccess" /> values.</param>
634       <param name="share">A bitwise combination of the <see cref="T:System.IO.FileShare" /> values.</param>
635       <param name="bufferSize">The <see cref="T:System.IO.FileStream" /> buffer size.</param>
636       <exception cref="T:System.ArgumentException">The <paramref name="path" /> is badly formed.</exception>
637       <exception cref="T:System.ArgumentNullException">The <paramref name="path" /> is <see langword="null" />.</exception>
638       <exception cref="T:System.IO.FileNotFoundException">No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />.</exception>
639     </member>
640     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.IO.IsolatedStorage.IsolatedStorageFile)">
641       <summary>Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" />, in the specified <paramref name="mode" />, with the specified file <paramref name="access" />, using the file sharing mode specified by <paramref name="share" />, with the <paramref name="buffersize" /> specified, and in the context of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> specified by <paramref name="isf" />.</summary>
642       <param name="path">The relative path of the file within isolated storage.</param>
643       <param name="mode">One of the <see cref="T:System.IO.FileMode" /> values.</param>
644       <param name="access">A bitwise combination of the <see cref="T:System.IO.FileAccess" /> values.</param>
645       <param name="share">A bitwise combination of the <see cref="T:System.IO.FileShare" /> values</param>
646       <param name="bufferSize">The <see cref="T:System.IO.FileStream" /> buffer size.</param>
647       <param name="isf">The <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> in which to open the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" />.</param>
648       <exception cref="T:System.ArgumentException">The <paramref name="path" /> is badly formed.</exception>
649       <exception cref="T:System.ArgumentNullException">The <paramref name="path" /> is <see langword="null" />.</exception>
650       <exception cref="T:System.IO.FileNotFoundException">No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />.</exception>
651       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">
652         <paramref name="isf" /> does not have a quota.</exception>
653     </member>
654     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.IO.IsolatedStorage.IsolatedStorageFile)">
655       <summary>Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" />, in the specified <paramref name="mode" />, with the specified file <paramref name="access" />, using the file sharing mode specified by <paramref name="share" />, and in the context of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> specified by <paramref name="isf" />.</summary>
656       <param name="path">The relative path of the file within isolated storage.</param>
657       <param name="mode">One of the <see cref="T:System.IO.FileMode" /> values.</param>
658       <param name="access">A bitwise combination of the <see cref="T:System.IO.FileAccess" /> values.</param>
659       <param name="share">A bitwise combination of the <see cref="T:System.IO.FileShare" /> values.</param>
660       <param name="isf">The <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> in which to open the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" />.</param>
661       <exception cref="T:System.ArgumentException">The <paramref name="path" /> is badly formed.</exception>
662       <exception cref="T:System.ArgumentNullException">The <paramref name="path" /> is <see langword="null" />.</exception>
663       <exception cref="T:System.IO.FileNotFoundException">No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />.</exception>
664       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">
665         <paramref name="isf" /> does not have a quota.</exception>
666     </member>
667     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.IsolatedStorage.IsolatedStorageFile)">
668       <summary>Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" /> in the specified <paramref name="mode" />, with the specified file <paramref name="access" />, and in the context of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> specified by <paramref name="isf" />.</summary>
669       <param name="path">The relative path of the file within isolated storage.</param>
670       <param name="mode">One of the <see cref="T:System.IO.FileMode" /> values.</param>
671       <param name="access">A bitwise combination of the <see cref="T:System.IO.FileAccess" /> values.</param>
672       <param name="isf">The <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> in which to open the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" />.</param>
673       <exception cref="T:System.ArgumentException">The <paramref name="path" /> is badly formed.</exception>
674       <exception cref="T:System.ArgumentNullException">The <paramref name="path" /> is <see langword="null" />.</exception>
675       <exception cref="T:System.ObjectDisposedException">The isolated store is closed.</exception>
676       <exception cref="T:System.IO.FileNotFoundException">No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />.</exception>
677       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">
678         <paramref name="isf" /> does not have a quota.</exception>
679     </member>
680     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.#ctor(System.String,System.IO.FileMode,System.IO.IsolatedStorage.IsolatedStorageFile)">
681       <summary>Initializes a new instance of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> class giving access to the file designated by <paramref name="path" />, in the specified <paramref name="mode" />, and in the context of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> specified by <paramref name="isf" />.</summary>
682       <param name="path">The relative path of the file within isolated storage.</param>
683       <param name="mode">One of the <see cref="T:System.IO.FileMode" /> values.</param>
684       <param name="isf">The <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFile" /> in which to open the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" />.</param>
685       <exception cref="T:System.ArgumentException">The <paramref name="path" /> is badly formed.</exception>
686       <exception cref="T:System.ArgumentNullException">The <paramref name="path" /> is <see langword="null" />.</exception>
687       <exception cref="T:System.IO.FileNotFoundException">No file was found and the <paramref name="mode" /> is set to <see cref="F:System.IO.FileMode.Open" />.</exception>
688       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">
689         <paramref name="isf" /> does not have a quota.</exception>
690     </member>
691     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
692       <summary>Begins an asynchronous read.</summary>
693       <param name="buffer">The buffer to read data into.</param>
694       <param name="offset">The byte offset in <paramref name="buffer" /> at which to begin reading.</param>
695       <param name="numBytes">The maximum number of bytes to read.</param>
696       <param name="userCallback">The method to call when the asynchronous read operation is completed. This parameter is optional.</param>
697       <param name="stateObject">The status of the asynchronous read.</param>
698       <returns>An <see cref="T:System.IAsyncResult" /> object that represents the asynchronous read, which is possibly still pending. This <see cref="T:System.IAsyncResult" /> must be passed to this stream's <see cref="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.EndRead(System.IAsyncResult)" /> method to determine how many bytes were read. This can be done either by the same code that called <see cref="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> or in a callback passed to <see cref="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" />.</returns>
699       <exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file.</exception>
700     </member>
701     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
702       <summary>Begins an asynchronous write.</summary>
703       <param name="buffer">The buffer to write data to.</param>
704       <param name="offset">The byte offset in <paramref name="buffer" /> at which to begin writing.</param>
705       <param name="numBytes">The maximum number of bytes to write.</param>
706       <param name="userCallback">The method to call when the asynchronous write operation is completed. This parameter is optional.</param>
707       <param name="stateObject">The status of the asynchronous write.</param>
708       <returns>An <see cref="T:System.IAsyncResult" /> that represents the asynchronous write, which is possibly still pending. This <see cref="T:System.IAsyncResult" /> must be passed to this stream's <see cref="M:System.IO.Stream.EndWrite(System.IAsyncResult)" /> method to ensure that the write is complete, then frees resources appropriately. This can be done either by the same code that called <see cref="M:System.IO.Stream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> or in a callback passed to <see cref="M:System.IO.Stream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" />.</returns>
709       <exception cref="T:System.IO.IOException">An asynchronous write was attempted past the end of the file.</exception>
710     </member>
711     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.CanRead">
712       <summary>Gets a Boolean value indicating whether the file can be read.</summary>
713       <returns>
714         <see langword="true" /> if an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object can be read; otherwise, <see langword="false" />.</returns>
715     </member>
716     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.CanSeek">
717       <summary>Gets a Boolean value indicating whether seek operations are supported.</summary>
718       <returns>
719         <see langword="true" /> if an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object supports seek operations; otherwise, <see langword="false" />.</returns>
720     </member>
721     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.CanWrite">
722       <summary>Gets a Boolean value indicating whether you can write to the file.</summary>
723       <returns>
724         <see langword="true" /> if an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object can be written; otherwise, <see langword="false" />.</returns>
725     </member>
726     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Dispose(System.Boolean)">
727       <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> and optionally releases the managed resources.</summary>
728       <param name="disposing">
729         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources</param>
730     </member>
731     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.DisposeAsync">
732       <summary>Asynchronously releases the unmanaged resources used by the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" />.</summary>
733       <returns>A task that represents the asynchronous dispose operation.</returns>
734     </member>
735     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.EndRead(System.IAsyncResult)">
736       <summary>Ends a pending asynchronous read request.</summary>
737       <param name="asyncResult">The pending asynchronous request.</param>
738       <returns>The number of bytes read from the stream, between zero and the number of requested bytes. Streams will only return zero at the end of the stream. Otherwise, they will block until at least one byte is available.</returns>
739       <exception cref="T:System.ArgumentNullException">The <paramref name="asyncResult" /> is <see langword="null" />.</exception>
740     </member>
741     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.EndWrite(System.IAsyncResult)">
742       <summary>Ends an asynchronous write.</summary>
743       <param name="asyncResult">The pending asynchronous I/O request to end.</param>
744       <exception cref="T:System.ArgumentNullException">The <paramref name="asyncResult" /> parameter is <see langword="null" />.</exception>
745     </member>
746     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Flush">
747       <summary>Clears buffers for this stream and causes any buffered data to be written to the file.</summary>
748     </member>
749     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Flush(System.Boolean)">
750       <summary>Clears buffers for this stream and causes any buffered data to be written to the file, and also clears all intermediate file buffers.</summary>
751       <param name="flushToDisk">
752         <see langword="true" /> to flush all intermediate file buffers; otherwise, <see langword="false" />.</param>
753     </member>
754     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.FlushAsync(System.Threading.CancellationToken)">
755       <summary>Asynchronously clears buffers for this stream and causes any buffered data to be written to the file.</summary>
756       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
757       <returns>A task that represents the asynchronous flush operation.</returns>
758     </member>
759     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.Handle">
760       <summary>Gets the file handle for the file that the current <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object encapsulates. Accessing this property is not permitted on an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object, and throws an <see cref="T:System.IO.IsolatedStorage.IsolatedStorageException" />.</summary>
761       <returns>The file handle for the file that the current <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object encapsulates.</returns>
762       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The <see cref="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.Handle" /> property always generates this exception.</exception>
763     </member>
764     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.IsAsync">
765       <summary>Gets a Boolean value indicating whether the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object was opened asynchronously or synchronously.</summary>
766       <returns>
767         <see langword="true" /> if the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object supports asynchronous access; otherwise, <see langword="false" />.</returns>
768     </member>
769     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.Length">
770       <summary>Gets the length of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object.</summary>
771       <returns>The length of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object in bytes.</returns>
772     </member>
773     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Lock(System.Int64,System.Int64)">
774       <summary>Prevents other processes from reading from or writing to the stream.</summary>
775       <param name="position">The starting position of the range to lock. The value of this parameter must be equal to or greater than 0 (zero).</param>
776       <param name="length">The number of bytes to lock.</param>
777       <exception cref="T:System.ArgumentOutOfRangeException">
778         <paramref name="position" /> or <paramref name="length" /> is negative.</exception>
779       <exception cref="T:System.ObjectDisposedException">The file is closed.</exception>
780       <exception cref="T:System.IO.IOException">The process cannot access the file because another process has locked a portion of the file.</exception>
781     </member>
782     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.Position">
783       <summary>Gets or sets the current position of the current <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object.</summary>
784       <returns>The current position of this <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object.</returns>
785       <exception cref="T:System.ArgumentOutOfRangeException">The position cannot be set to a negative number.</exception>
786     </member>
787     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Read(System.Byte[],System.Int32,System.Int32)">
788       <summary>Copies bytes from the current buffered <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object to a byte array.</summary>
789       <param name="buffer">The buffer to write the data into.</param>
790       <param name="offset">The offset in the buffer at which to begin writing.</param>
791       <param name="count">The maximum number of bytes to read.</param>
792       <returns>The total number of bytes read into the <paramref name="buffer" />. This can be less than the number of bytes requested if that many bytes are not currently available, or zero if the end of the stream is reached.</returns>
793     </member>
794     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Read(System.Span{System.Byte})">
795       <summary>Copies bytes from the current buffered <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object to a byte span.</summary>
796       <param name="buffer">The buffer to write the data into.</param>
797       <returns>The total number of bytes read into the <paramref name="buffer" />. This can be less than the number of bytes requested if that many bytes are not currently available, or zero if the end of the stream is reached.</returns>
798     </member>
799     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
800       <summary>Asynchronously copies bytes from the current buffered <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object to a byte array.</summary>
801       <param name="buffer">The buffer to write the data into.</param>
802       <param name="offset">The offset in the buffer at which to begin writing.</param>
803       <param name="count">The maximum number of bytes to read.</param>
804       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
805       <returns>A task that represents the asynchronous read operation. It wraps the total number of bytes read into the <paramref name="buffer" />. This can be less than the number of bytes requested if that many bytes are not currently available, or zero if the end of the stream is reached.</returns>
806     </member>
807     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.ReadAsync(System.Memory{System.Byte},System.Threading.CancellationToken)">
808       <summary>Asynchronously copies bytes from the current buffered <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object to a byte memory range.</summary>
809       <param name="buffer">The buffer to write the data into.</param>
810       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
811       <returns>A task that represents the asynchronous read operation. It wraps the total number of bytes read into the <paramref name="buffer" />. This can be less than the number of bytes requested if that many bytes are not currently available, or zero if the end of the stream is reached.</returns>
812     </member>
813     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.ReadByte">
814       <summary>Reads a single byte from the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object in isolated storage.</summary>
815       <returns>The 8-bit unsigned integer value read from the isolated storage file.</returns>
816     </member>
817     <member name="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.SafeFileHandle">
818       <summary>Gets a <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle" /> object that represents the operating system file handle for the file that the current <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object encapsulates.</summary>
819       <returns>A <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle" /> object that represents the operating system file handle for the file that the current <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object encapsulates.</returns>
820       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The <see cref="P:System.IO.IsolatedStorage.IsolatedStorageFileStream.SafeFileHandle" /> property always generates this exception.</exception>
821     </member>
822     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Seek(System.Int64,System.IO.SeekOrigin)">
823       <summary>Sets the current position of this <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object to the specified value.</summary>
824       <param name="offset">The new position of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object.</param>
825       <param name="origin">One of the <see cref="T:System.IO.SeekOrigin" /> values.</param>
826       <returns>The new position in the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object.</returns>
827       <exception cref="T:System.ArgumentException">The <paramref name="origin" /> must be one of the <see cref="T:System.IO.SeekOrigin" /> values.</exception>
828     </member>
829     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.SetLength(System.Int64)">
830       <summary>Sets the length of this <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object to the specified <paramref name="value" />.</summary>
831       <param name="value">The new length of the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object.</param>
832       <exception cref="T:System.ArgumentOutOfRangeException">
833         <paramref name="value" /> is a negative number.</exception>
834     </member>
835     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Unlock(System.Int64,System.Int64)">
836       <summary>Allows other processes to access all or part of a file that was previously locked.</summary>
837       <param name="position">The starting position of the range to unlock. The value of this parameter must be equal to or greater than 0 (zero).</param>
838       <param name="length">The number of bytes to unlock.</param>
839       <exception cref="T:System.ArgumentOutOfRangeException">
840         <paramref name="position" /> or <paramref name="length" /> is negative.</exception>
841     </member>
842     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Write(System.Byte[],System.Int32,System.Int32)">
843       <summary>Writes a block of bytes to the isolated storage file stream object using data read from a buffer consisting of a byte array.</summary>
844       <param name="buffer">The byte array from which to copy bytes to the current isolated storage file stream.</param>
845       <param name="offset">The byte offset in <paramref name="buffer" /> from which to begin.</param>
846       <param name="count">The maximum number of bytes to write.</param>
847       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The write attempt exceeds the quota for the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object.</exception>
848     </member>
849     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.Write(System.ReadOnlySpan{System.Byte})">
850       <summary>Writes a block of bytes to the isolated storage file stream object using data read from a buffer consisting of a read-only byte span.</summary>
851       <param name="buffer">The read-only byte span from which to copy bytes to the current isolated storage file stream.</param>
852     </member>
853     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
854       <summary>Asynchronously writes a block of bytes to the isolated storage file stream object using data read from a buffer consisting of a byte array.</summary>
855       <param name="buffer">The byte array from which to copy bytes to the current isolated storage file stream.</param>
856       <param name="offset">The byte offset in <paramref name="buffer" /> from which to begin.</param>
857       <param name="count">The maximum number of bytes to write.</param>
858       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
859       <returns>A task that represents the asynchronous write operation.</returns>
860     </member>
861     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)">
862       <summary>Asynchronously writes a block of bytes to the isolated storage file stream object using data read from a buffer consisting of a read-only byte memory range.</summary>
863       <param name="buffer">The read-only byte memory from which to copy bytes to the current isolated storage file stream.</param>
864       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
865       <returns>A task that represents the asynchronous write operation.</returns>
866     </member>
867     <member name="M:System.IO.IsolatedStorage.IsolatedStorageFileStream.WriteByte(System.Byte)">
868       <summary>Writes a single byte to the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object.</summary>
869       <param name="value">The byte value to write to the isolated storage file.</param>
870       <exception cref="T:System.IO.IsolatedStorage.IsolatedStorageException">The write attempt exceeds the quota for the <see cref="T:System.IO.IsolatedStorage.IsolatedStorageFileStream" /> object.</exception>
871     </member>
872     <member name="T:System.IO.IsolatedStorage.IsolatedStorageScope">
873       <summary>Enumerates the levels of isolated storage scope that are supported by <see cref="T:System.IO.IsolatedStorage.IsolatedStorage" />.</summary>
874     </member>
875     <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.Application">
876       <summary>Isolated storage scoped to the application.</summary>
877     </member>
878     <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.Assembly">
879       <summary>Isolated storage scoped to the identity of the assembly.</summary>
880     </member>
881     <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.Domain">
882       <summary>Isolated storage scoped to the application domain identity.</summary>
883     </member>
884     <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.Machine">
885       <summary>Isolated storage scoped to the machine.</summary>
886     </member>
887     <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.None">
888       <summary>No isolated storage usage.</summary>
889     </member>
890     <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.Roaming">
891       <summary>The isolated store can be placed in a location on the file system that might roam (if roaming user data is enabled on the underlying operating system).</summary>
892     </member>
893     <member name="F:System.IO.IsolatedStorage.IsolatedStorageScope.User">
894       <summary>Isolated storage scoped by user identity.</summary>
895     </member>
896   </members>
897 </doc>