Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- ItemCheckEvent.cs
- OracleInternalConnection.cs
- XmlSignatureProperties.cs
- TimeSpanValidator.cs
- BamlStream.cs
- InputScopeConverter.cs
- CompareInfo.cs
- SchemaImporterExtensionsSection.cs
- EntityException.cs
- ProviderCollection.cs
- LayoutSettings.cs
- InspectionWorker.cs
- XamlPathDataSerializer.cs
- StaticSiteMapProvider.cs
- OdbcError.cs
- IsolatedStorageFilePermission.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- Attachment.cs
- Semaphore.cs
- DispatcherFrame.cs
- OdbcConnectionFactory.cs
- Tracking.cs
- AppDomainShutdownMonitor.cs
- CfgRule.cs
- Matrix3DValueSerializer.cs
- OracleInfoMessageEventArgs.cs
- EventProviderTraceListener.cs
- WaitHandleCannotBeOpenedException.cs
- FrameDimension.cs
- ListControl.cs
- Hyperlink.cs
- FileChangesMonitor.cs
- DBConcurrencyException.cs
- FontFamilyIdentifier.cs
- StyleXamlTreeBuilder.cs
- ForwardPositionQuery.cs
- ACE.cs
- SmiMetaDataProperty.cs
- CLSCompliantAttribute.cs
- MetadataCollection.cs
- HtmlImage.cs
- RootBrowserWindowAutomationPeer.cs
- HttpHandlerAction.cs
- XmlSecureResolver.cs
- SortKey.cs
- SettingsProperty.cs
- Int32Storage.cs
- IPHostEntry.cs
- InkCanvasFeedbackAdorner.cs
- OptimisticConcurrencyException.cs
- WebContext.cs
- TextureBrush.cs
- EncoderFallback.cs
- SqlRowUpdatedEvent.cs
- RemoteX509AsymmetricSecurityKey.cs
- SecurityDescriptor.cs
- EventProxy.cs
- SortDescription.cs
- MdiWindowListItemConverter.cs
- CodeAttributeArgument.cs
- Queue.cs
- TraceSection.cs
- ConstNode.cs
- Perspective.cs
- Int16Converter.cs
- RegexCompiler.cs
- LineSegment.cs
- DiscoveryDocumentReference.cs
- ImageList.cs
- DBConnection.cs
- CellParaClient.cs
- SamlAttribute.cs
- ToolboxCategory.cs
- PropertyIDSet.cs
- Vector3DKeyFrameCollection.cs
- ReflectionHelper.cs
- sqlinternaltransaction.cs
- CatalogPartCollection.cs
- CryptographicAttribute.cs
- MethodRental.cs
- EncryptRequest.cs
- ColorAnimation.cs
- RoutingExtensionElement.cs
- DSASignatureFormatter.cs
- ServiceBusyException.cs
- DataGridViewEditingControlShowingEventArgs.cs
- ThrowHelper.cs
- AppearanceEditorPart.cs
- ClientUrlResolverWrapper.cs
- ErrorRuntimeConfig.cs
- ObjectAnimationUsingKeyFrames.cs
- itemelement.cs
- TextDecorationCollectionConverter.cs
- UserControlParser.cs
- FixedBufferAttribute.cs
- EastAsianLunisolarCalendar.cs
- InputScopeManager.cs
- TransactionFilter.cs
- DetailsViewInsertedEventArgs.cs
- SuppressIldasmAttribute.cs