码迷,mamicode.com
首页 > 其他好文 > 详细

序列化事件后检查值是否合法

时间:2016-09-19 12:57:49      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

/// <summary>
    /// 刮刮卡参数
    /// </summary>
    [DataContract]
    public sealed class GetGuaGuaCardReq
    {
        /// <summary>
        /// 客户ID
        /// </summary>
        [DataMember]
        public int CustomerId { get; set; }

        /// <summary>
        /// Gets or sets the index of the page.
        /// </summary>
        [DataMember]
        public int PageIndex { get; set; }

        /// <summary>
        /// Gets or sets the size of the page.
        /// </summary>
        [DataMember]
        public int PageSize { get; set; }

        /// <summary>
        /// Called when [deserialized].
        /// </summary>
        /// <param name="context">The context.</param>
        [OnDeserialized]
        private void OnDeserialized(StreamingContext context)
        {
            if (this.PageIndex == 0)
            {
                this.PageIndex = 1;
            }
            if (this.PageSize == 0)
            {
                this.PageSize = 15;
            }
        }
    }

 

using System.Runtime.Serialization;

序列化事件后检查值是否合法

标签:

原文地址:http://www.cnblogs.com/zhshlimi/p/5884683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!