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();
              }
        }