17 references to Helper
System.IO.IsolatedStorage (17)
System\IO\IsolatedStorage\IsolatedStorage.cs (6)
23
if (
Helper
.IsApplication(Scope))
34
if (
Helper
.IsAssembly(Scope))
45
if (
Helper
.IsDomain(Scope))
145
Helper
.GetDefaultIdentityAndHash(out object identity, out string hash, SeparatorInternal);
147
if (
Helper
.IsApplication(scope))
153
if (
Helper
.IsDomain(scope))
System\IO\IsolatedStorage\IsolatedStorageFile.cs (4)
61
if (
Helper
.IsRoaming(Scope))
625
if (
Helper
.IsDomain(Scope))
649
string root =
Helper
.GetRootDirectory(scope);
706
if (
Helper
.IsRoaming(Scope))
System\IO\IsolatedStorage\IsolatedStorageFile.NonMobile.cs (7)
35
if (
Helper
.IsApplication(scope))
39
else if (
Helper
.IsDomain(scope))
50
Helper
.CreateDirectory(_rootDirectory, scope);
55
StringBuilder root = new StringBuilder(
Helper
.GetRootDirectory(Scope));
67
(
Helper
.IsApplication(Scope) && string.Equals(directoryName, s_appFiles, StringComparison.Ordinal))
68
|| (
Helper
.IsAssembly(Scope) && string.Equals(directoryName, s_assemFiles, StringComparison.Ordinal))
69
|| (
Helper
.IsDomain(Scope) && string.Equals(directoryName, s_files, StringComparison.Ordinal));