1 instantiation of IsolatedStorageFile
System.IO.IsolatedStorage (1)
System\IO\IsolatedStorage\IsolatedStorageFile.cs (1)
494
return new
IsolatedStorageFile
(scope);
23 references to IsolatedStorageFile
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
334
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.IsolatedStorage.
IsolatedStorageFile
))]
netstandard (1)
netstandard.cs (1)
935
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.IsolatedStorage.
IsolatedStorageFile
))]
System.IO.IsolatedStorage (21)
System\IO\IsolatedStorage\IsolatedStorageFile.cs (12)
456
public static
IsolatedStorageFile
GetUserStoreForApplication()
461
public static
IsolatedStorageFile
GetUserStoreForAssembly()
466
public static
IsolatedStorageFile
GetUserStoreForDomain()
471
public static
IsolatedStorageFile
GetUserStoreForSite()
477
public static
IsolatedStorageFile
GetMachineStoreForApplication()
482
public static
IsolatedStorageFile
GetMachineStoreForAssembly()
487
public static
IsolatedStorageFile
GetMachineStoreForDomain()
492
private static
IsolatedStorageFile
GetStore(IsolatedStorageScope scope)
515
public static
IsolatedStorageFile
GetStore(IsolatedStorageScope scope, Type? applicationEvidenceType)
521
public static
IsolatedStorageFile
GetStore(IsolatedStorageScope scope, object? applicationIdentity)
527
public static
IsolatedStorageFile
GetStore(IsolatedStorageScope scope, Type? domainEvidenceType, Type? assemblyEvidenceType)
533
public static
IsolatedStorageFile
GetStore(IsolatedStorageScope scope, object? domainIdentity, object? assemblyIdentity)
System\IO\IsolatedStorage\IsolatedStorageFileStream.cs (9)
17
private readonly
IsolatedStorageFile
_isf;
26
public IsolatedStorageFileStream(string path, FileMode mode,
IsolatedStorageFile
? isf)
36
public IsolatedStorageFileStream(string path, FileMode mode, FileAccess access,
IsolatedStorageFile
? isf)
46
public IsolatedStorageFileStream(string path, FileMode mode, FileAccess access, FileShare share,
IsolatedStorageFile
? isf)
56
public IsolatedStorageFileStream(string path, FileMode mode, FileAccess access, FileShare share, int bufferSize,
IsolatedStorageFile
? isf)
79
public
IsolatedStorageFile
StorageFile;
84
private static InitializationData InitializeFileStream(string path, FileMode mode, FileAccess access, FileShare share, int bufferSize,
IsolatedStorageFile
? isf)
95
isf =
IsolatedStorageFile
.GetUserStoreForDomain();
145
throw
IsolatedStorageFile
.GetIsolatedStorageException(SR.IsolatedStorage_Operation_ISFS, e);