Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / System / Windows / Markup / RoutedEventValueSerializer.cs / 1 / RoutedEventValueSerializer.cs
//------------------------------------------------------------------------ // // Microsoft Windows Client Platform // Copyright (C) Microsoft Corporation, 2005 // // File: RoutedEventValueSerializer.cs // // Contents: Value serializer for the RoutedEvent class // // Created: 04/28/2005 [....] // //----------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; namespace System.Windows.Markup { internal class RoutedEventValueSerializer: ValueSerializer { public override bool CanConvertToString(object value, IValueSerializerContext context) { return ValueSerializer.GetSerializerFor(typeof(Type), context) != null; } public override bool CanConvertFromString(string value, IValueSerializerContext context) { return ValueSerializer.GetSerializerFor(typeof(Type), context) != null; } public override string ConvertToString(object value, IValueSerializerContext context) { RoutedEvent routedEvent = value as RoutedEvent; if (routedEvent != null) { ValueSerializer typeSerializer = ValueSerializer.GetSerializerFor(typeof(Type), context); if (typeSerializer != null) { return typeSerializer.ConvertToString(routedEvent.OwnerType, context) + "." + routedEvent.Name; } } return base.ConvertToString(value, context); } static DictionaryinitializedTypes = new Dictionary (); static void ForceTypeConstructors(Type currentType) { // Force load the Statics by walking up the hierarchy and running class constructors while (currentType != null && !initializedTypes.ContainsKey(currentType)) { System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor(currentType.TypeHandle); initializedTypes[currentType] = currentType; currentType = currentType.BaseType; } } public override object ConvertFromString(string value, IValueSerializerContext context) { ValueSerializer typeSerializer = ValueSerializer.GetSerializerFor(typeof(Type), context); if (typeSerializer != null) { int index = value.IndexOf('.'); if (index > 0) { Type type = typeSerializer.ConvertFromString(value.Substring(0, index), context) as Type; string name = value.Substring(index + 1).Trim(); ForceTypeConstructors(type); return EventManager.GetRoutedEventFromName(name, type); } } return base.ConvertFromString(value, context); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------ // // Microsoft Windows Client Platform // Copyright (C) Microsoft Corporation, 2005 // // File: RoutedEventValueSerializer.cs // // Contents: Value serializer for the RoutedEvent class // // Created: 04/28/2005 [....] // //----------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; namespace System.Windows.Markup { internal class RoutedEventValueSerializer: ValueSerializer { public override bool CanConvertToString(object value, IValueSerializerContext context) { return ValueSerializer.GetSerializerFor(typeof(Type), context) != null; } public override bool CanConvertFromString(string value, IValueSerializerContext context) { return ValueSerializer.GetSerializerFor(typeof(Type), context) != null; } public override string ConvertToString(object value, IValueSerializerContext context) { RoutedEvent routedEvent = value as RoutedEvent; if (routedEvent != null) { ValueSerializer typeSerializer = ValueSerializer.GetSerializerFor(typeof(Type), context); if (typeSerializer != null) { return typeSerializer.ConvertToString(routedEvent.OwnerType, context) + "." + routedEvent.Name; } } return base.ConvertToString(value, context); } static Dictionary initializedTypes = new Dictionary (); static void ForceTypeConstructors(Type currentType) { // Force load the Statics by walking up the hierarchy and running class constructors while (currentType != null && !initializedTypes.ContainsKey(currentType)) { System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor(currentType.TypeHandle); initializedTypes[currentType] = currentType; currentType = currentType.BaseType; } } public override object ConvertFromString(string value, IValueSerializerContext context) { ValueSerializer typeSerializer = ValueSerializer.GetSerializerFor(typeof(Type), context); if (typeSerializer != null) { int index = value.IndexOf('.'); if (index > 0) { Type type = typeSerializer.ConvertFromString(value.Substring(0, index), context) as Type; string name = value.Substring(index + 1).Trim(); ForceTypeConstructors(type); return EventManager.GetRoutedEventFromName(name, type); } } return base.ConvertFromString(value, context); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StorageEndPropertyMapping.cs
- DataGridRow.cs
- SystemResourceKey.cs
- ModuleBuilderData.cs
- CommandManager.cs
- XmlElement.cs
- XpsFixedDocumentSequenceReaderWriter.cs
- AsnEncodedData.cs
- DataComponentMethodGenerator.cs
- ResXResourceSet.cs
- PriorityRange.cs
- SpellerInterop.cs
- TaskbarItemInfo.cs
- TcpPortSharing.cs
- BrowserDefinition.cs
- ReservationCollection.cs
- DataObjectAttribute.cs
- XmlConverter.cs
- ApplicationHost.cs
- SpellerInterop.cs
- SqlCacheDependency.cs
- UriSection.cs
- TransactionManager.cs
- SecurityRuntime.cs
- ListBoxAutomationPeer.cs
- Button.cs
- TextSerializer.cs
- XmlNamespaceMapping.cs
- ToolTipService.cs
- MessageLogTraceRecord.cs
- WebPartActionVerb.cs
- WinFormsUtils.cs
- XPathDescendantIterator.cs
- DataSourceSelectArguments.cs
- DoubleUtil.cs
- EdmScalarPropertyAttribute.cs
- DataServiceHostFactory.cs
- EndpointInstanceProvider.cs
- RootBrowserWindow.cs
- SerializationSectionGroup.cs
- IPipelineRuntime.cs
- DiagnosticsConfiguration.cs
- IteratorFilter.cs
- TraceSection.cs
- util.cs
- CallbackHandler.cs
- DbCommandTree.cs
- RemotingService.cs
- SoapInteropTypes.cs
- MemberHolder.cs
- GroupBox.cs
- StringTraceRecord.cs
- FormViewUpdateEventArgs.cs
- RequiredFieldValidator.cs
- JsonClassDataContract.cs
- GridErrorDlg.cs
- IChannel.cs
- XsdBuilder.cs
- TypeUtil.cs
- FontNamesConverter.cs
- ZoneLinkButton.cs
- ObjectDataSourceSelectingEventArgs.cs
- XmlSchemaCompilationSettings.cs
- ConstructorBuilder.cs
- ExecutionEngineException.cs
- SolidColorBrush.cs
- SqlXml.cs
- As.cs
- EntityConnectionStringBuilderItem.cs
- ControlType.cs
- DbConnectionHelper.cs
- AsymmetricSignatureFormatter.cs
- SchemaImporter.cs
- sqlpipe.cs
- HtmlProps.cs
- WorkflowMarkupSerializerMapping.cs
- WindowsNonControl.cs
- SystemIcmpV6Statistics.cs
- UInt64Converter.cs
- SecurityImpersonationBehavior.cs
- Bezier.cs
- ActivityTypeDesigner.xaml.cs
- HostingEnvironmentException.cs
- ResourceDescriptionAttribute.cs
- _AcceptOverlappedAsyncResult.cs
- Point3DAnimationBase.cs
- BaseCAMarshaler.cs
- StringPropertyBuilder.cs
- DataBindingHandlerAttribute.cs
- LabelEditEvent.cs
- AsyncCallback.cs
- BitmapDecoder.cs
- SafeHandles.cs
- TabPage.cs
- XmlSerializerVersionAttribute.cs
- TagPrefixAttribute.cs
- ComponentRenameEvent.cs
- StorageBasedPackageProperties.cs
- TextProperties.cs
- ModuleConfigurationInfo.cs