IgnoreDataMemberAttribute.cs 485 B

123456789101112131415
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.Runtime.Serialization
  5. {
  6. [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, Inherited = false, AllowMultiple = false)]
  7. public sealed class IgnoreDataMemberAttribute : Attribute
  8. {
  9. public IgnoreDataMemberAttribute()
  10. {
  11. }
  12. }
  13. }