Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetStore() [3/5]

static IsolatedStorageFile System.IO.IsolatedStorage.IsolatedStorageFile.GetStore ( IsolatedStorageScope scope,
object? domainIdentity,
object? assemblyIdentity )
inlinestatic

Definition at line 537 of file IsolatedStorageFile.cs.

538 {
539 if (domainIdentity != null || assemblyIdentity != null)
540 {
541 throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_CAS);
542 }
543 return GetStore(scope);
544 }
static IsolatedStorageFile GetStore(IsolatedStorageScope scope)
static string PlatformNotSupported_CAS
Definition SR.cs:54
Definition SR.cs:7

References System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(), and System.SR.PlatformNotSupported_CAS.