Click here to Skip to main content
Click here to Skip to main content
Articles » Database » Database » Databases » Downloads
 

Single Object Property Database

By , 30 Oct 2007
 
propertymappertest.zip
PropertyMapperTest
Objects
Properties
PropertyMapper
Attributes
Exceptions
Properties
PropertyManager.csproj.user
PropertyMapper
PropertyValuesTable
using System;
using System.Collections.Generic;

using System.Text;

namespace PropertyMapping
{
    /// <summary>
    /// Special Attribute class to mark the object property
    /// to support the registration with the PropertyManager.
    /// </summary>
    [global::System.AttributeUsage(AttributeTargets.Property , Inherited = false, AllowMultiple = true)]
    [CLSCompliant(true)]
    public sealed class MapPropertyAttribute : Attribute
    {
        object objStandardValue = null; 
        public MapPropertyAttribute(){       
         
        }

        public object StandardValue
        {
            get
            {
                return objStandardValue;
            }
            set
            {
                objStandardValue = value;
            }
        }

    }
}

By viewing downloads associated with this article you agree to the Terms of use and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Tigran Martirosyan

United States United States
No Biography provided

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 30 Oct 2007
Article Copyright 2007 by Tigran Martirosyan
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid