Mercurial > pub > bltoolkit
view Source/Mapping/NullValueAttribute.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System; using System.Diagnostics.CodeAnalysis; namespace BLToolkit.Mapping { [SuppressMessage("Microsoft.Performance", "CA1813:AvoidUnsealedAttributes")] [AttributeUsage( AttributeTargets.Class | AttributeTargets.Interface | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Enum, AllowMultiple=true)] public class NullValueAttribute : Attribute { public NullValueAttribute() { } public NullValueAttribute(object value) { _value = value; } public NullValueAttribute(Type type, object value) { _type = type; _value = value; } private readonly object _value; public object Value { get { return _value; } } private readonly Type _type; public Type Type { get { return _type; } } } }