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