IsolatedStorageFile.GetMachineStoreForApplication 方法

定义

获取与调用代码的应用程序标识对应的计算机范围的独立存储。

public:
 static System::IO::IsolatedStorage::IsolatedStorageFile ^ GetMachineStoreForApplication();
public static System.IO.IsolatedStorage.IsolatedStorageFile GetMachineStoreForApplication ();
static member GetMachineStoreForApplication : unit -> System.IO.IsolatedStorage.IsolatedStorageFile
Public Shared Function GetMachineStoreForApplication () As IsolatedStorageFile

返回

与基于调用代码的应用程序标识的独立存储范围对应的对象。

例外

未能确定调用方的应用程序标识。

- 或 -

未能确定为应用程序域授予的权限集。

- 或 -

无法初始化独立的存储位置。

未授予使用独立存储的足够权限。

注解

使用此方法时,与应用程序关联的所有程序集都使用相同的独立存储。

GetMachineStoreForApplication 在功能上等效于以下代码:

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

适用于

另请参阅