当前位置: 首页>>代码示例>>C#>>正文


C# Profile.GetType方法代码示例

本文整理汇总了C#中Profile.GetType方法的典型用法代码示例。如果您正苦于以下问题:C# Profile.GetType方法的具体用法?C# Profile.GetType怎么用?C# Profile.GetType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Profile的用法示例。


在下文中一共展示了Profile.GetType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: SetPropertyValues

        public override void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection collection)
        {
            var username = (string)context["UserName"];

            if (string.IsNullOrEmpty(username) || collection.Count < 1)
                return;

            var db = new UserContext();
            var firstOrDefault = db.Users.FirstOrDefault(u => u.Email.Equals(username));
            if (firstOrDefault != null)
            {
                int userId = firstOrDefault.ID;
                Profile profile = db.Profiles.FirstOrDefault(u => u.UserID == userId);
                if (profile != null)
                {
                    foreach (SettingsPropertyValue val in collection)
                    {
                        profile.GetType().GetProperty(val.Property.Name).SetValue(profile, val.PropertyValue);
                    }
                    profile.LastUpdateDate = DateTime.Now;
                    db.Entry(profile).State = EntityState.Modified;
                }
                else
                {
                    profile = new Profile();
                    foreach (SettingsPropertyValue val in collection)
                    {
                        profile.GetType().GetProperty(val.Property.Name).SetValue(profile, val.PropertyValue);
                    }
                    profile.LastUpdateDate = DateTime.Now;
                    profile.UserID = userId;
                    db.Profiles.Add(profile);
                }
            }
            db.SaveChanges();
        }
开发者ID:zzhukanton,项目名称:BSU.ASP1501.Project,代码行数:36,代码来源:CustomProfileProvider.cs

示例2: SerializeProfileToXml

        private static string SerializeProfileToXml(Profile profile)
        {
            if (profile == null) throw new ArgumentNullException("profile");

            XmlRootAttribute profileRoot = new XmlRootAttribute("profile");
            profileRoot.Namespace = MavenSettingsNamespace;

            XmlAttributes attributes = new XmlAttributes();
            attributes.XmlRoot = profileRoot;

            XmlAttributeOverrides overrides = new XmlAttributeOverrides();
            overrides.Add(profile.GetType(), attributes);

            XmlSerializerNamespaces xmlnsEmpty = new XmlSerializerNamespaces();
            xmlnsEmpty.Add("", MavenSettingsNamespace);

            XmlSerializer xs = new XmlSerializer(profile.GetType(), overrides);
            StringWriter xout = new StringWriter();
            xs.Serialize(xout, profile, xmlnsEmpty);
            String SerializedProfile = xout.ToString();
            xout.Close();

            return SerializedProfile;
        }
开发者ID:tocsleung,项目名称:npanday,代码行数:24,代码来源:SettingsUtil.cs


注:本文中的Profile.GetType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。