IsolatedStorageFile.GetMachineStoreForApplication 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得對應於呼叫程式碼的應用程式識別之機器範圍隔離儲存區。
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)