XmlFormatExtensionPointAttribute.cs 872 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // System.Web.Services.Configuration.XmlFormatExtensionPointAttribute.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. namespace System.Web.Services.Configuration {
  10. [AttributeUsage (AttributeTargets.Class)]
  11. public sealed class XmlFormatExtensionPointAttribute : Attribute {
  12. #region Fields
  13. bool allowElements;
  14. string memberName;
  15. #endregion // Fields
  16. #region Constructors
  17. public XmlFormatExtensionPointAttribute (string memberName)
  18. {
  19. allowElements = false; // FIXME
  20. }
  21. #endregion // Constructors
  22. #region Properties
  23. public bool AllowElements {
  24. get { return allowElements; }
  25. set { allowElements = value; }
  26. }
  27. public string MemberName {
  28. get { return memberName; }
  29. set { memberName = value; }
  30. }
  31. #endregion // Properties
  32. }
  33. }