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