| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- //
- // SoapAttributeAttribute.cs:
- //
- // Author:
- // John Donagher ([email protected])
- //
- // (C) 2002 John Donagher
- //
- using System;
- namespace System.Xml.Serialization
- {
- /// <summary>
- /// Summary description for SoapAttributeAttribute.
- /// </summary>
- [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field
- | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
- public class SoapAttributeAttribute : Attribute
- {
- private string attrName;
- private string dataType;
- private string ns;
- public SoapAttributeAttribute ()
- {
- }
- public SoapAttributeAttribute (string attrName)
- {
- AttributeName = attrName;
- }
- public string AttributeName {
- get {
- return attrName;
- }
- set {
- attrName = value;
- }
- }
- public string DataType {
- get {
- return dataType;
- }
- set {
- dataType = value;
- }
- }
- public string Namespace {
- get {
- return ns;
- }
- set {
- ns = value;
- }
- }
- }
- }
|