NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IsolatedStorageFile.GetStore (IsolatedStorageScope, Object, Object)

Represents isolated storage scope given application domain and assembly identity objects.

[Visual Basic]
Overloads Public Shared Function GetStore( _
   ByVal scope As IsolatedStorageScope, _
   ByVal DomainIdentity As Object, _
   ByVal AssemblyIdentity As Object _
) As IsolatedStorageFile
[C#]
public static IsolatedStorageFile GetStore(
   IsolatedStorageScope scope,
   object DomainIdentity,
   object AssemblyIdentity
);
[C++]
public: static IsolatedStorageFile* GetStore(
   IsolatedStorageScope scope,
   Object* DomainIdentity,
   Object* AssemblyIdentity
);
[JScript]
public static function GetStore(
   scope : IsolatedStorageScope,
   DomainIdentity : Object,
   AssemblyIdentity : Object
) : IsolatedStorageFile;

Parameters

scope
specifies isolated storage scope for the store
DomainIdentity
[To be supplied.]
AssemblyIdentity
[To be supplied.]

Return Value

Newly initialized isolated store instance.

Exceptions

Exception Type Condition
SecurityException if sufficient isolated storage permission has not been granted

Remarks

This form of constructor is not usually used by application programs.

Requirements

NGWS Runtime Security:

IsolatedStorageFilePermission must have permission to access isolated storage by application domain identity

See Also

IsolatedStorageFile Class | IsolatedStorageFile Members | System.IO.IsolatedStorage Namespace | IsolatedStorageFile.GetStore Overload List