SimpleColumnProvider.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / DynamicData / DynamicData / ModelProviders / SimpleColumnProvider.cs / 1407647 / SimpleColumnProvider.cs

                            namespace System.Web.DynamicData.ModelProviders { 
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text; 
    using System.ComponentModel;
    using System.ComponentModel.DataAnnotations; 
    using System.Web.Resources; 

    internal sealed class SimpleColumnProvider : ColumnProvider { 
        public SimpleColumnProvider(TableProvider tableProvider, PropertyDescriptor propertyDescriptor)
            : base(tableProvider) {
            if (propertyDescriptor.PropertyType == null) {
                throw new ArgumentNullException(DynamicDataResources.SimpleColumnProvider_ColumnTypeRequired); 
            }
            Name = propertyDescriptor.Name; 
            ColumnType = propertyDescriptor.PropertyType; 
            IsPrimaryKey = propertyDescriptor.Attributes.OfType().Any();
            Nullable = Misc.TypeAllowsNull(ColumnType); 
            IsReadOnly = propertyDescriptor.IsReadOnly;
            IsSortable = true;
        }
 
        public override AttributeCollection Attributes {
            get { 
                if (!Misc.IsBindableType(ColumnType)) { 
                    return AttributeCollection.FromExisting(base.Attributes, new ScaffoldColumnAttribute(false));
                } 
                return base.Attributes;
            }
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK