首页 > 其他 > 详细

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

时间:2016-09-19 12:56:01      阅读:175      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!