IsolatedStorageFile.GetMachineStoreForAssembly メソッド

定義

呼び出し元のコードのアセンブリ ID に対応するマシン スコープの分離ストレージを取得します。

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

戻り値

呼び出し元のコードのアセンブリ ID に基づく分離ストレージ スコープに対応するオブジェクト。

例外

分離ストレージの場所を初期化できません。

分離ストレージに対して必要なアクセス許可が与えられていません。

注釈

このメソッドを使用する場合、異なるアプリケーション内の同じアセンブリは常に同じ分離ストアを使用します。

GetMachineStoreForAssembly は、次のコードと機能的に同等です。

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

注意

同じアプリケーション ドメイン内で実行されている異なるアセンブリには、常に個別の分離ストアがあります。

適用対象

こちらもご覧ください