ComponentConverter.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / ComponentModel / ComponentConverter.cs / 1 / ComponentConverter.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/* 
 */ 
namespace System.ComponentModel {
    using Microsoft.Win32; 
    using System.Collections;
    using System.ComponentModel;
    using System.ComponentModel.Design;
    using System.Diagnostics; 
    using System.Runtime.Serialization.Formatters;
    using System.Runtime.Remoting; 
    using System.Runtime.InteropServices; 
    using System.Security.Permissions;
 
    /// 
    ///    Provides a type converter to convert component objects to and
    ///       from various other representations.
    ///  
    [HostProtection(SharedState = true)]
    public class ComponentConverter : ReferenceConverter { 
 
        /// 
        ///     
        ///       Initializes a new instance of the  class.
        ///    
        /// 
        public ComponentConverter(Type type) : base(type) { 
        }
 
        ///  
        /// 
        ///    Gets a collection of properties for the type of component 
        ///       specified by the value
        ///       parameter.
        /// 
        public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 
            return TypeDescriptor.GetProperties(value, attributes);
        } 
 
        /// 
        ///  
        ///    Gets a value indicating whether this object supports properties using the
        ///       specified context.
        /// 
        public override bool GetPropertiesSupported(ITypeDescriptorContext context) { 
            return true;
        } 
    } 
}
 

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

/* 
 */ 
namespace System.ComponentModel {
    using Microsoft.Win32; 
    using System.Collections;
    using System.ComponentModel;
    using System.ComponentModel.Design;
    using System.Diagnostics; 
    using System.Runtime.Serialization.Formatters;
    using System.Runtime.Remoting; 
    using System.Runtime.InteropServices; 
    using System.Security.Permissions;
 
    /// 
    ///    Provides a type converter to convert component objects to and
    ///       from various other representations.
    ///  
    [HostProtection(SharedState = true)]
    public class ComponentConverter : ReferenceConverter { 
 
        /// 
        ///     
        ///       Initializes a new instance of the  class.
        ///    
        /// 
        public ComponentConverter(Type type) : base(type) { 
        }
 
        ///  
        /// 
        ///    Gets a collection of properties for the type of component 
        ///       specified by the value
        ///       parameter.
        /// 
        public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 
            return TypeDescriptor.GetProperties(value, attributes);
        } 
 
        /// 
        ///  
        ///    Gets a value indicating whether this object supports properties using the
        ///       specified context.
        /// 
        public override bool GetPropertiesSupported(ITypeDescriptorContext context) { 
            return true;
        } 
    } 
}
 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

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