Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Markup / RoutedEventValueSerializer.cs / 1305600 / 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)) { MS.Internal.WindowsBase.SecurityHelper.RunClassConstructor(currentType); 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
- FixedPageAutomationPeer.cs
- SingleConverter.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- Cursor.cs
- PropertyGeneratedEventArgs.cs
- SymLanguageType.cs
- CollectionViewProxy.cs
- MetricEntry.cs
- DockingAttribute.cs
- ActionNotSupportedException.cs
- XmlConvert.cs
- LinqDataSourceInsertEventArgs.cs
- TextTreeDeleteContentUndoUnit.cs
- RNGCryptoServiceProvider.cs
- LinkDescriptor.cs
- OperationPickerDialog.designer.cs
- ImplicitInputBrush.cs
- PublisherMembershipCondition.cs
- XMLSyntaxException.cs
- WeakEventTable.cs
- NotImplementedException.cs
- RuleSettings.cs
- MarshalDirectiveException.cs
- AdapterUtil.cs
- GridViewHeaderRowPresenter.cs
- WeakReference.cs
- AnimationLayer.cs
- TimersDescriptionAttribute.cs
- IdentityNotMappedException.cs
- NameTable.cs
- UTF32Encoding.cs
- TcpConnectionPoolSettings.cs
- ClrPerspective.cs
- TreeNodeConverter.cs
- CatalogPartCollection.cs
- DocumentApplicationJournalEntry.cs
- NameValueCollection.cs
- AttributeExtensions.cs
- MetafileHeaderWmf.cs
- Parser.cs
- FontUnitConverter.cs
- ContainerAction.cs
- WindowInteractionStateTracker.cs
- SerializationFieldInfo.cs
- TemplateLookupAction.cs
- BrushMappingModeValidation.cs
- AutomationElementCollection.cs
- XamlTreeBuilderBamlRecordWriter.cs
- XmlSchemaAnyAttribute.cs
- CorruptingExceptionCommon.cs
- MarkupObject.cs
- BrushMappingModeValidation.cs
- TemplateManager.cs
- NumberFunctions.cs
- XsdDataContractImporter.cs
- ClaimComparer.cs
- FramingDecoders.cs
- EventData.cs
- DesignerInterfaces.cs
- ByteKeyFrameCollection.cs
- AttributedMetaModel.cs
- CodeTypeMember.cs
- SspiHelper.cs
- BamlStream.cs
- XmlChoiceIdentifierAttribute.cs
- SocketAddress.cs
- RelationshipNavigation.cs
- IconHelper.cs
- UserPreferenceChangingEventArgs.cs
- MulticastDelegate.cs
- ScrollBarRenderer.cs
- FrameDimension.cs
- DPTypeDescriptorContext.cs
- recordstatefactory.cs
- Int32Rect.cs
- BrowserCapabilitiesCodeGenerator.cs
- ReaderWriterLock.cs
- DomainConstraint.cs
- ApplicationTrust.cs
- MethodAccessException.cs
- SqlAggregateChecker.cs
- ComboBoxAutomationPeer.cs
- OpenFileDialog.cs
- AnnotationResourceChangedEventArgs.cs
- UnmanagedMemoryStreamWrapper.cs
- CollaborationHelperFunctions.cs
- CTreeGenerator.cs
- ValueUnavailableException.cs
- SettingsProperty.cs
- ComponentSerializationService.cs
- PenThread.cs
- Funcletizer.cs
- coordinator.cs
- UserCancellationException.cs
- UserControlParser.cs
- Logging.cs
- SymLanguageVendor.cs
- MimeBasePart.cs
- FormViewDeletedEventArgs.cs
- VirtualizingStackPanel.cs