| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // XmlIncludeAttribute.cs:
- //
- // Author:
- // John Donagher ([email protected])
- //
- // (C) 2002 John Donagher
- //
- using System;
- namespace System.Xml.Serialization
- {
- /// <summary>
- /// Summary description for XmlIncludeAttribute.
- /// </summary>
- [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct |
- AttributeTargets.Method)]
- public class XmlIncludeAttribute : Attribute
- {
- private Type type;
- public XmlIncludeAttribute (Type type)
- {
- Type = type;
- }
- public Type Type {
- get {
- return type;
- }
- set {
- type = value;
- }
- }
- }
- }
|