IsolatedStorageFile.GetMachineStoreForAssembly メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
呼び出し元のコードのアセンブリ 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)
注意
同じアプリケーション ドメイン内で実行されている異なるアセンブリには、常に個別の分離ストアがあります。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET