17 references to Helper
System.IO.IsolatedStorage (17)
System\IO\IsolatedStorage\IsolatedStorage.cs (6)
23if (Helper.IsApplication(Scope)) 34if (Helper.IsAssembly(Scope)) 45if (Helper.IsDomain(Scope)) 145Helper.GetDefaultIdentityAndHash(out object identity, out string hash, SeparatorInternal); 147if (Helper.IsApplication(scope)) 153if (Helper.IsDomain(scope))
System\IO\IsolatedStorage\IsolatedStorageFile.cs (4)
61if (Helper.IsRoaming(Scope)) 625if (Helper.IsDomain(Scope)) 649string root = Helper.GetRootDirectory(scope); 706if (Helper.IsRoaming(Scope))
System\IO\IsolatedStorage\IsolatedStorageFile.NonMobile.cs (7)
35if (Helper.IsApplication(scope)) 39else if (Helper.IsDomain(scope)) 50Helper.CreateDirectory(_rootDirectory, scope); 55StringBuilder 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));