Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / clr / src / BCL / System / OleAutBinder.cs / 1 / OleAutBinder.cs
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
// This class represents the Ole Automation binder.
// #define DISPLAY_DEBUG_INFO
namespace System {
using System;
using System.Runtime.InteropServices;
using System.Reflection;
using Microsoft.Win32;
using CultureInfo = System.Globalization.CultureInfo;
// Made serializable in anticipation of this class eventually having state.
[Serializable()]
internal class OleAutBinder : DefaultBinder
{
// ChangeType
// This binder uses OLEAUT to change the type of the variant.
public override Object ChangeType(Object value, Type type, CultureInfo cultureInfo)
{
Variant myValue = new Variant(value);
if (cultureInfo == null)
cultureInfo = CultureInfo.CurrentCulture;
#if DISPLAY_DEBUG_INFO
Console.Write("In OleAutBinder::ChangeType converting variant of type: ");
Console.Write(myValue.VariantType);
Console.Write(" to type: ");
Console.WriteLine(type.Name);
#endif
if (type.IsByRef)
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Striping byref from the type to convert to.");
#endif
type = type.GetElementType();
}
// If we are trying to convert from an object to another type then we don't
// need the OLEAUT change type, we can just use the normal COM+ mechanisms.
if (!type.IsPrimitive && type.IsInstanceOfType(value))
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Source variant can be assigned to destination type");
#endif
return value;
}
Type srcType = value.GetType();
// Handle converting primitives to enums.
if (type.IsEnum && srcType.IsPrimitive)
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Converting primitive to enum");
#endif
return Enum.Parse(type, value.ToString());
}
// Special case the convertion from DBNull.
if (srcType == typeof(DBNull))
{
// The requested type is a DBNull so no convertion is required.
if (type == typeof(DBNull))
return value;
// Visual J++ supported converting from DBNull to null so customers
// have requested (via a CDCR) that DBNull be convertible to null.
// We don't however allow this when converting to a value class, since null
// doesn't make sense for these, or to object since this would change existing
// semantics.
if ((type.IsClass && type != typeof(Object)) || type.IsInterface)
return null;
}
#if FEATURE_COMINTEROP
// Use the OA variant lib to convert primitive types.
try
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Using OAVariantLib.ChangeType() to do the conversion");
#endif
// Specify the LocalBool flag to have BOOL values converted to local language rather
// than 0 or -1.
Object RetObj = OAVariantLib.ChangeType(myValue, type, OAVariantLib.LocalBool, cultureInfo).ToObject();
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Object returned from ChangeType is of type: " + RetObj.GetType().Name);
#endif
return RetObj;
}
#if DISPLAY_DEBUG_INFO
catch(NotSupportedException e)
#else
catch(NotSupportedException)
#endif
{
#if DISPLAY_DEBUG_INFO
Console.Write("Exception thrown: ");
Console.WriteLine(e);
#endif
throw new COMException(Environment.GetResourceString("Interop.COM_TypeMismatch"), unchecked((int)0x80020005));
}
#else // !FEATURE_COMINTEROP
return base.ChangeType(value, type, cultureInfo);
#endif // !FEATURE_COMINTEROP
}
#if !FEATURE_COMINTEROP
// CanChangeType
public override bool CanChangeType(Object value, Type type, CultureInfo cultureInfo)
{
Variant myValue = new Variant(value);
if (cultureInfo == null)
cultureInfo = CultureInfo.CurrentCulture;
#if DISPLAY_DEBUG_INFO
Console.Write("In OleAutBinder::CanChangeType converting variant of type: ");
Console.Write(myValue.VariantType);
Console.Write(" to type: ");
Console.WriteLine(type.Name);
#endif
// If we are trying to convert to variant then there is nothing to do.
if (type == typeof(Variant))
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Variant being changed to type variant is always legal");
#endif
return true;
}
if (type.IsByRef)
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Striping byref from the type to convert to.");
#endif
type = type.GetElementType();
}
// If we are trying to convert from an object to another type then we don't
// need the OLEAUT change type, we can just use the normal COM+ mechanisms.
if (!type.IsPrimitive && type.IsInstanceOfType(value))
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Source variant can be assigned to destination type");
#endif
return true;
}
// Handle converting primitives to enums.
if (type.IsEnum && value.GetType().IsPrimitive)
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Converting primitive to enum");
#endif
return true;
}
return base.CanChangeType(value, type, cultureInfo);
}
#endif // FEATURE_COMINTEROP
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
// This class represents the Ole Automation binder.
// #define DISPLAY_DEBUG_INFO
namespace System {
using System;
using System.Runtime.InteropServices;
using System.Reflection;
using Microsoft.Win32;
using CultureInfo = System.Globalization.CultureInfo;
// Made serializable in anticipation of this class eventually having state.
[Serializable()]
internal class OleAutBinder : DefaultBinder
{
// ChangeType
// This binder uses OLEAUT to change the type of the variant.
public override Object ChangeType(Object value, Type type, CultureInfo cultureInfo)
{
Variant myValue = new Variant(value);
if (cultureInfo == null)
cultureInfo = CultureInfo.CurrentCulture;
#if DISPLAY_DEBUG_INFO
Console.Write("In OleAutBinder::ChangeType converting variant of type: ");
Console.Write(myValue.VariantType);
Console.Write(" to type: ");
Console.WriteLine(type.Name);
#endif
if (type.IsByRef)
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Striping byref from the type to convert to.");
#endif
type = type.GetElementType();
}
// If we are trying to convert from an object to another type then we don't
// need the OLEAUT change type, we can just use the normal COM+ mechanisms.
if (!type.IsPrimitive && type.IsInstanceOfType(value))
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Source variant can be assigned to destination type");
#endif
return value;
}
Type srcType = value.GetType();
// Handle converting primitives to enums.
if (type.IsEnum && srcType.IsPrimitive)
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Converting primitive to enum");
#endif
return Enum.Parse(type, value.ToString());
}
// Special case the convertion from DBNull.
if (srcType == typeof(DBNull))
{
// The requested type is a DBNull so no convertion is required.
if (type == typeof(DBNull))
return value;
// Visual J++ supported converting from DBNull to null so customers
// have requested (via a CDCR) that DBNull be convertible to null.
// We don't however allow this when converting to a value class, since null
// doesn't make sense for these, or to object since this would change existing
// semantics.
if ((type.IsClass && type != typeof(Object)) || type.IsInterface)
return null;
}
#if FEATURE_COMINTEROP
// Use the OA variant lib to convert primitive types.
try
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Using OAVariantLib.ChangeType() to do the conversion");
#endif
// Specify the LocalBool flag to have BOOL values converted to local language rather
// than 0 or -1.
Object RetObj = OAVariantLib.ChangeType(myValue, type, OAVariantLib.LocalBool, cultureInfo).ToObject();
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Object returned from ChangeType is of type: " + RetObj.GetType().Name);
#endif
return RetObj;
}
#if DISPLAY_DEBUG_INFO
catch(NotSupportedException e)
#else
catch(NotSupportedException)
#endif
{
#if DISPLAY_DEBUG_INFO
Console.Write("Exception thrown: ");
Console.WriteLine(e);
#endif
throw new COMException(Environment.GetResourceString("Interop.COM_TypeMismatch"), unchecked((int)0x80020005));
}
#else // !FEATURE_COMINTEROP
return base.ChangeType(value, type, cultureInfo);
#endif // !FEATURE_COMINTEROP
}
#if !FEATURE_COMINTEROP
// CanChangeType
public override bool CanChangeType(Object value, Type type, CultureInfo cultureInfo)
{
Variant myValue = new Variant(value);
if (cultureInfo == null)
cultureInfo = CultureInfo.CurrentCulture;
#if DISPLAY_DEBUG_INFO
Console.Write("In OleAutBinder::CanChangeType converting variant of type: ");
Console.Write(myValue.VariantType);
Console.Write(" to type: ");
Console.WriteLine(type.Name);
#endif
// If we are trying to convert to variant then there is nothing to do.
if (type == typeof(Variant))
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Variant being changed to type variant is always legal");
#endif
return true;
}
if (type.IsByRef)
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Striping byref from the type to convert to.");
#endif
type = type.GetElementType();
}
// If we are trying to convert from an object to another type then we don't
// need the OLEAUT change type, we can just use the normal COM+ mechanisms.
if (!type.IsPrimitive && type.IsInstanceOfType(value))
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Source variant can be assigned to destination type");
#endif
return true;
}
// Handle converting primitives to enums.
if (type.IsEnum && value.GetType().IsPrimitive)
{
#if DISPLAY_DEBUG_INFO
Console.WriteLine("Converting primitive to enum");
#endif
return true;
}
return base.CanChangeType(value, type, cultureInfo);
}
#endif // FEATURE_COMINTEROP
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- NavigateEvent.cs
- XmlSchemaComplexContent.cs
- DBCommand.cs
- DataProtection.cs
- MembershipAdapter.cs
- DeadCharTextComposition.cs
- ExecutionEngineException.cs
- FastPropertyAccessor.cs
- AutoGeneratedField.cs
- MediaPlayer.cs
- WebBrowserNavigatedEventHandler.cs
- HandlerBase.cs
- FlowNode.cs
- RoutingChannelExtension.cs
- HostingEnvironmentWrapper.cs
- SqlBinder.cs
- DataExpression.cs
- WorkflowItemPresenter.cs
- RadioButtonBaseAdapter.cs
- ThreadStateException.cs
- LinkLabel.cs
- TypeReference.cs
- TraceSection.cs
- ProcessStartInfo.cs
- SupportingTokenProviderSpecification.cs
- List.cs
- Perspective.cs
- EntityDataSourceUtil.cs
- SqlConnectionPoolProviderInfo.cs
- PreservationFileReader.cs
- DigestComparer.cs
- SqlReferenceCollection.cs
- FlowNode.cs
- ValidatorCompatibilityHelper.cs
- SimpleModelProvider.cs
- OleDbCommandBuilder.cs
- SafeCoTaskMem.cs
- LineServicesCallbacks.cs
- LongValidatorAttribute.cs
- SoapExtension.cs
- DataGridViewLinkColumn.cs
- TableLayoutRowStyleCollection.cs
- KeyGestureConverter.cs
- DeferredTextReference.cs
- SecurityPolicyVersion.cs
- CfgSemanticTag.cs
- ImageButton.cs
- ThemeableAttribute.cs
- SearchForVirtualItemEventArgs.cs
- MemberPath.cs
- EllipseGeometry.cs
- EntityRecordInfo.cs
- ObservableCollection.cs
- MDIWindowDialog.cs
- XPathSelfQuery.cs
- ProviderUtil.cs
- GenericTypeParameterBuilder.cs
- UriParserTemplates.cs
- InstanceValue.cs
- NativeMethods.cs
- XhtmlBasicLabelAdapter.cs
- DataGridViewButtonColumn.cs
- LineUtil.cs
- AppendHelper.cs
- _SafeNetHandles.cs
- ClassHandlersStore.cs
- XmlDictionaryReaderQuotas.cs
- MenuItemStyleCollection.cs
- AspNetHostingPermission.cs
- SqlProviderManifest.cs
- KeyedCollection.cs
- ScrollViewerAutomationPeer.cs
- ParseHttpDate.cs
- TemplateBamlRecordReader.cs
- XmlEventCache.cs
- RowToParametersTransformer.cs
- CompensatableTransactionScopeActivity.cs
- EntityDataSourceQueryBuilder.cs
- ChannelSinkStacks.cs
- StrokeCollection2.cs
- OdbcTransaction.cs
- RijndaelManaged.cs
- ArithmeticException.cs
- ConstantCheck.cs
- SqlTriggerAttribute.cs
- VirtualizingPanel.cs
- LayoutTableCell.cs
- LinqDataSourceStatusEventArgs.cs
- StaticResourceExtension.cs
- XmlFormatExtensionPointAttribute.cs
- InputMethodStateTypeInfo.cs
- SqlTriggerAttribute.cs
- CodeEntryPointMethod.cs
- EasingFunctionBase.cs
- HttpCacheVaryByContentEncodings.cs
- BackgroundWorker.cs
- PrintControllerWithStatusDialog.cs
- NativeCompoundFileAPIs.cs
- SymmetricKeyWrap.cs
- CapabilitiesState.cs