GetMachineStoreForApplication Method
.NET Framework Class Library
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)
Visual Basic
Public Shared Function GetMachineStoreForApplication As IsolatedStorageFile
C#
public static IsolatedStorageFile GetMachineStoreForApplication()
Visual C++
public:
static IsolatedStorageFile^ GetMachineStoreForApplication()
F#
static member GetMachineStoreForApplication : unit -> IsolatedStorageFile 

Return Value

Type: System.IO.IsolatedStorage..::.IsolatedStorageFile
An IsolatedStorageFile object corresponding to the isolated storage scope based on the calling code's application identity.
ExceptionCondition
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:

Visual Basic
isoFile = IsolatedStorageFile.GetStore(IsolatedStorageScope.Application Or _
    IsolatedStorageScope.Machine,  Nothing)
C#
isoFile = IsolatedStorageFile.GetStore(IsolatedStorageScope.Application |
    IsolatedStorageScope.Machine, null);
Visual C++
isoFile = IsolatedStorageFile::GetStore(IsolatedStorageScope::Application |
    IsolatedStorageScope::Machine, (Type^)nullptr);

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role not supported), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
Page view tracker