Mindscape.Raygun4Net.RaygunClient.GetIsolatedStorageScope C# (CSharp) Method

GetIsolatedStorageScope() private method

private GetIsolatedStorageScope ( ) : IsolatedStorageFile
return IsolatedStorageFile
        private IsolatedStorageFile GetIsolatedStorageScope()
        {
            if (AppDomain.CurrentDomain != null && AppDomain.CurrentDomain.ActivationContext != null)
              {
            return IsolatedStorageFile.GetUserStoreForApplication();
              }
              else
              {
            return IsolatedStorageFile.GetUserStoreForAssembly();
              }
        }