// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Diagnostics.CodeAnalysis;
namespace System.Xml.Serialization
{
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
public class XmlTextAttribute : System.Attribute
{
private Type? _type;
private string? _dataType;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public XmlTextAttribute()
{
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public XmlTextAttribute(Type? type)
{
_type = type;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public Type? Type
{
get { return _type; }
set { _type = value; }
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[AllowNull]
public string DataType
{
get { return _dataType ?? string.Empty; }
set { _dataType = value; }
}
}
}
|