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::GetMachineStoreForApplication Method ()

 

Obtains machine-scoped isolated storage corresponding to the calling code's application identity.

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

public:
static IsolatedStorageFile^ GetMachineStoreForApplication()

Return Value

Type: System.IO.IsolatedStorage::IsolatedStorageFile^

An object corresponding to the isolated storage scope based on the calling code's application identity.

Exception Condition
IsolatedStorageException

The application identity of the caller could not be determined.

-or-

The granted permission set for the application domain could not be determined.

-or-

An isolated storage location cannot be initialized.

SecurityException

Sufficient isolated storage permissions have not been granted.

All assemblies associated with an application use the same isolated store when using this method.

GetMachineStoreForApplication is functionally equivalent to the following code:

isoFile = IsolatedStorageFile::GetStore(IsolatedStorageScope::Application |
    IsolatedStorageScope::Machine, (Type^)nullptr);

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 2.0
Return to top
Show:
© 2017 Microsoft