COM2DataTypeToManagedDataTypeConverter.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 / WinForms / Managed / System / WinForms / ComponentModel / COM2Interop / COM2DataTypeToManagedDataTypeConverter.cs / 1305376 / COM2DataTypeToManagedDataTypeConverter.cs

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

namespace System.Windows.Forms.ComponentModel.Com2Interop { 
    using System.Runtime.Serialization.Formatters; 
    using System.ComponentModel;
    using System.Diagnostics; 
    using System;
    using System.Drawing;
    using System.ComponentModel.Design;
    using System.Collections; 
    using Microsoft.Win32;
 
    ///  
    /// 
    /// This base class maps an ole defined data type (OLE_COLOR, IFont, etc.), 
    ///
    /// 
    internal abstract class Com2DataTypeToManagedDataTypeConverter{
 

         public virtual bool AllowExpand { 
             get { 
                 return false;
             } 
         }

         /// 
         ///  
         ///     Returns the managed type that this editor maps the property type to.
         ///  
         public abstract Type ManagedType{ 
            get;
         } 

         /// 
         /// 
         ///     Converts the native value into a managed value 
         /// 
         public abstract object ConvertNativeToManaged(object nativeValue, Com2PropertyDescriptor pd); 
 
         /// 
         ///  
         ///     Converts the managed value into a native value
         /// 
         public abstract object ConvertManagedToNative(object managedValue, Com2PropertyDescriptor pd, ref bool cancelSet);
    } 
}
 

// 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