UIAutomation.CurrentData.GetProfile C# (CSharp) Method

GetProfile() static private method

static private GetProfile ( string name ) : Profile
name string
return Profile
        internal static Profile GetProfile(string name)
        {
            return Profiles.FirstOrDefault(profile => name == profile.Name);
        }
    }