IsolatedStorageException Class
The exception that is thrown when an operation in isolated storage fails.
For a list of all members of this type, see IsolatedStorageException Members.
System.Object
System.Exception
System.IO.IsolatedStorage.IsolatedStorageException
[Visual Basic] <Serializable> Public Class IsolatedStorageException Inherits Exception [C#] [Serializable] public class IsolatedStorageException : Exception [C++] [Serializable] public __gc class IsolatedStorageException : public Exception [JScript] public Serializable class IsolatedStorageException extends Exception
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Remarks
IsolatedStorageException uses the ISS_E_ISOSTORE, which has the value 0x80131450.
The most common examples of isolated storage exceptions are as follows.
- Missing evidence. Isolated storage requires evidence (information about the assembly and its origin) in order to determine the identity of the code and connect it to the correct associated file space. Without this information, isolated storage cannot be used.
- Invalid operations. Some FileStream operations are not supported for isolated storage.
For a list of initial property values for an instance of IsolatedStorageException, see the IsolatedStorageException constructors.
Requirements
Namespace: System.IO.IsolatedStorage
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: Mscorlib (in Mscorlib.dll)
See Also
IsolatedStorageException Members | System.IO.IsolatedStorage Namespace | Exception | Handling and Throwing Exceptions