AjaxNonSerializableAttribute.cs
上传用户:szgaoree
上传日期:2009-01-05
资源大小:74k
文件大小:0k
源码类别:

Ajax

开发平台:

C#

  1. using System;
  2. namespace AjaxPro
  3. {
  4. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
  5. public class AjaxNonSerializableAttribute : Attribute
  6. {
  7. public AjaxNonSerializableAttribute()
  8. {
  9. }
  10. }
  11. }