Mindscape.Raygun4Net.RaygunClient.GetIsolatedStorageScope C# (CSharp) Метод

GetIsolatedStorageScope() приватный Метод

private GetIsolatedStorageScope ( ) : IsolatedStorageFile
Результат IsolatedStorageFile
        private IsolatedStorageFile GetIsolatedStorageScope()
        {
            if (AppDomain.CurrentDomain != null && AppDomain.CurrentDomain.ActivationContext != null)
              {
            return IsolatedStorageFile.GetUserStoreForApplication();
              }
              else
              {
            return IsolatedStorageFile.GetUserStoreForAssembly();
              }
        }