Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------ // // 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)) { 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
- SQLSingleStorage.cs
- Freezable.cs
- SecurityDocument.cs
- RectKeyFrameCollection.cs
- InputReportEventArgs.cs
- DataTableNewRowEvent.cs
- SqlRewriteScalarSubqueries.cs
- ElementUtil.cs
- View.cs
- DirtyTextRange.cs
- EntitySetBase.cs
- TimeoutException.cs
- MessageUtil.cs
- DiscoveryReferences.cs
- SimpleNameService.cs
- RichTextBoxConstants.cs
- GenericRootAutomationPeer.cs
- ParagraphVisual.cs
- PnrpPermission.cs
- CodeActivityMetadata.cs
- XmlAttributeProperties.cs
- UserControlBuildProvider.cs
- UserControlBuildProvider.cs
- ExpressionNode.cs
- ComponentEvent.cs
- MailDefinition.cs
- QuaternionAnimation.cs
- AsyncResult.cs
- BamlCollectionHolder.cs
- XmlSchemaSimpleType.cs
- ComponentDispatcher.cs
- DataTransferEventArgs.cs
- PageCodeDomTreeGenerator.cs
- DataControlFieldHeaderCell.cs
- InfocardExtendedInformationEntry.cs
- Hyperlink.cs
- XmlSchemaImporter.cs
- CacheEntry.cs
- TextAction.cs
- FixedSOMTableRow.cs
- ProjectionPruner.cs
- HttpRequest.cs
- PolyLineSegment.cs
- SerializationFieldInfo.cs
- BrowserCapabilitiesCompiler.cs
- SqlDependencyUtils.cs
- XmlNodeReader.cs
- WorkflowQueueInfo.cs
- StylusShape.cs
- SqlParameter.cs
- UIAgentMonitor.cs
- ExtendedPropertyDescriptor.cs
- RightsManagementSuppressedStream.cs
- AnnotationAuthorChangedEventArgs.cs
- EdmMember.cs
- ActiveDocumentEvent.cs
- CoTaskMemSafeHandle.cs
- FormViewModeEventArgs.cs
- SQLMoneyStorage.cs
- BevelBitmapEffect.cs
- StorageComplexTypeMapping.cs
- TextParagraphProperties.cs
- _NTAuthentication.cs
- ToolboxComponentsCreatedEventArgs.cs
- TabletDeviceInfo.cs
- MulticastNotSupportedException.cs
- WorkingDirectoryEditor.cs
- SurrogateEncoder.cs
- QuotedStringFormatReader.cs
- ExclusiveCanonicalizationTransform.cs
- InProcStateClientManager.cs
- WindowsTab.cs
- EventDrivenDesigner.cs
- ObjectConverter.cs
- SecurityRuntime.cs
- XmlAttributeProperties.cs
- FacetValueContainer.cs
- ConfigErrorGlyph.cs
- PageTheme.cs
- Viewport3DVisual.cs
- ExtensionFile.cs
- InvalidComObjectException.cs
- SoapConverter.cs
- GreenMethods.cs
- RedirectionProxy.cs
- entitydatasourceentitysetnameconverter.cs
- ParseNumbers.cs
- SchemaObjectWriter.cs
- VersionPair.cs
- ICollection.cs
- webproxy.cs
- DuplicateWaitObjectException.cs
- BatchParser.cs
- Vector3DCollection.cs
- SymbolPair.cs
- ServiceHandle.cs
- MetadataReference.cs
- XmlBoundElement.cs
- SerializerDescriptor.cs
- SqlSelectStatement.cs