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

◆ VerifyScope()

static void System.IO.IsolatedStorage.IsolatedStorage.VerifyScope ( IsolatedStorageScope scope)
inlinestaticprivateinherited

Definition at line 153 of file IsolatedStorage.cs.

154 {
155 switch (scope)
156 {
157 case IsolatedStorageScope.User | IsolatedStorageScope.Assembly:
158 case IsolatedStorageScope.User | IsolatedStorageScope.Domain | IsolatedStorageScope.Assembly:
159 case IsolatedStorageScope.User | IsolatedStorageScope.Assembly | IsolatedStorageScope.Roaming:
160 case IsolatedStorageScope.User | IsolatedStorageScope.Domain | IsolatedStorageScope.Assembly | IsolatedStorageScope.Roaming:
161 case IsolatedStorageScope.Assembly | IsolatedStorageScope.Machine:
162 case IsolatedStorageScope.Domain | IsolatedStorageScope.Assembly | IsolatedStorageScope.Machine:
163 case IsolatedStorageScope.User | IsolatedStorageScope.Application:
164 case IsolatedStorageScope.User | IsolatedStorageScope.Roaming | IsolatedStorageScope.Application:
165 case IsolatedStorageScope.Machine | IsolatedStorageScope.Application:
166 return;
167 }
169 }
static string IsolatedStorage_Scope_Invalid
Definition SR.cs:50
Definition SR.cs:7

References System.SR.IsolatedStorage_Scope_Invalid.

Referenced by System.IO.IsolatedStorage.IsolatedStorage.InitStore().