| 12345678910111213141516171819202122232425 |
- //
- // SoapIgnoreAttribute.cs:
- //
- // Author:
- // John Donagher ([email protected])
- //
- // (C) 2002 John Donagher
- //
- using System;
- namespace System.Xml.Serialization
- {
- /// <summary>
- /// Summary description for SoapIgnoreAttribute.
- /// </summary>
- [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field
- | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
- public class SoapIgnoreAttribute : Attribute
- {
- public SoapIgnoreAttribute ()
- {
- }
- }
- }
|