IsolatedStorageFile.GetUserStoreForApplication Method
Obtains user-scoped isolated storage corresponding to the calling code's application identity.
Namespace: System.IO.IsolatedStorage
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.IO.IsolatedStorage.IsolatedStorageFileAn object corresponding to the isolated storage scope based on the calling code's assembly identity.
| Exception | Condition |
|---|---|
| SecurityException | Sufficient isolated storage permissions have not been granted. |
| IsolatedStorageException | An isolated storage location cannot be initialized. -or- The application identity of the caller cannot be determined, because the ActivationContext property returned null. -or- The permissions for the application domain cannot be determined. |
All assemblies associated with an application use the same isolated store when using this method. This method can be used only when the application identity can be determined - for example, when the application is published through ClickOnce deployment or is a Silverlight-based application. If you attempt to use this method outside a ClickOnce or Silverlight-based application, you will receive an IsolatedStorageException exception, because the application identity of the caller cannot be determined.
GetUserStoreForApplication is functionally equivalent to the following code:
In this code, the applicationIdentity parameter for GetStore(IsolatedStorageScope scope, Object applicationIdentity) is null.
- IsolatedStorageFilePermission
for using isolated storage. Associated enumeration: AssemblyIsolationByUser
- ReflectionPermission
when invoked late-bound through mechanisms such as Type.InvokeMember. Associated enumeration: ReflectionPermissionFlag.MemberAccess
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.