| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- //
- // SoapElementAttribute.cs:
- //
- // Author:
- // John Donagher ([email protected])
- //
- // (C) 2002 John Donagher
- //
- using System;
- namespace System.Xml.Serialization
- {
- /// <summary>
- /// Summary description for SoapElementAttribute.
- /// </summary>
- [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field
- | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
- public class SoapElementAttribute : Attribute
- {
- private string dataType;
- private string elementName;
- private bool isNullable;
- public SoapElementAttribute ()
- {
- }
- public SoapElementAttribute (string elementName)
- {
- ElementName = elementName;
- }
- public string DataType {
- get {
- return dataType;
- }
- set {
- dataType = value;
- }
- }
- public string ElementName {
- get {
- return elementName;
- }
- set {
- elementName = value;
- }
- }
- public bool IsNullable {
- get {
- return isNullable;
- }
- set {
- isNullable = value;
- }
- }
-
- internal bool InternalEquals (SoapElementAttribute other)
- {
- if (other == null) return false;
- return (elementName == other.elementName &&
- dataType == other.dataType &&
- isNullable == other.isNullable);
- }
- }
- }
|