Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

IsolatedStorageFile::GetUserStoreForAssembly Method ()

 

Obtains user-scoped isolated storage corresponding to the calling code's assembly identity.

Namespace:   System.IO.IsolatedStorage
Assembly:  mscorlib (in mscorlib.dll)

public:
static IsolatedStorageFile^ GetUserStoreForAssembly()

Return Value

Type: System.IO.IsolatedStorage::IsolatedStorageFile^

An 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 permissions for the calling assembly cannot be determined.

The same assembly within different applications always uses the same isolated store when using this method.

GetUserStoreForAssembly is functionally equivalent to the following code:

isoFile = IsolatedStorageFile::GetStore(IsolatedStorageScope::Assembly |
    IsolatedStorageScope::User, (Type^)nullptr, (Type^)nullptr);
System_CAPS_noteNote

Different assemblies running within the same application domain always have distinct isolated stores.

IsolatedStorageFilePermission

for using isolated storage. Associated enumeration: AssemblyIsolationByUser

ReflectionPermission

when invoked late-bound through mechanisms such as Type::InvokeMember. Associated enumeration: ReflectionPermissionFlag::MemberAccess

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft