//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // [....] //------------------------------------------------------------------------------ namespace System.Xml.Serialization { using System; /// /// /// [To be supplied.] /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Parameter | AttributeTargets.ReturnValue)] public class SoapElementAttribute : System.Attribute { string elementName; string dataType; bool nullable; /// /// /// [To be supplied.] /// public SoapElementAttribute() { } /// /// /// [To be supplied.] /// public SoapElementAttribute(string elementName) { this.elementName = elementName; } /// /// /// [To be supplied.] /// public string ElementName { get { return elementName == null ? string.Empty : elementName; } set { elementName = value; } } /// /// /// [To be supplied.] /// public string DataType { get { return dataType == null ? string.Empty : dataType; } set { dataType = value; } } /// /// /// [To be supplied.] /// public bool IsNullable { get { return nullable; } set { nullable = value; } } } }