PortableSettingsProvider.IsRoaming C# (CSharp) 메소드

IsRoaming() 개인적인 메소드

private IsRoaming ( SettingsProperty prop ) : bool
prop SettingsProperty
리턴 bool
    private bool IsRoaming(SettingsProperty prop)
    {
        //Determine if the setting is marked as Roaming
        foreach (DictionaryEntry d in prop.Attributes)
        {
            var a = (Attribute)d.Value;
            if (a is SettingsManageabilityAttribute)
            {
                return true;
            }
        }
        return false;
    }