예제 #1
0
파일: Context.cs 프로젝트: witek86/UCR
        private void FindAndLoadProfile(string profileString)
        {
            Logger.Debug($"Searching for profile to load: {{{profileString}}}");
            var search  = profileString.Split(',').ToList();
            var profile = ProfilesManager.FindProfile(search);

            if (profile != null)
            {
                SubscriptionsManager.ActivateProfile(profile);
            }
        }