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
- ChangeConflicts.cs
- UnsafeNativeMethodsMilCoreApi.cs
- EventProviderClassic.cs
- Label.cs
- XmlTextEncoder.cs
- TimelineCollection.cs
- GPRECTF.cs
- CannotUnloadAppDomainException.cs
- SqlDataSourceFilteringEventArgs.cs
- XamlReaderHelper.cs
- Inflater.cs
- BamlVersionHeader.cs
- ListViewTableCell.cs
- XpsDocument.cs
- RayHitTestParameters.cs
- KeyInstance.cs
- MouseEventArgs.cs
- AddInAttribute.cs
- ToolBarPanel.cs
- XmlDictionaryString.cs
- TextEmbeddedObject.cs
- SqlClientWrapperSmiStreamChars.cs
- ContextBase.cs
- SerTrace.cs
- WmpBitmapEncoder.cs
- SqlUDTStorage.cs
- DrawingGroup.cs
- XmlNodeComparer.cs
- CqlParser.cs
- sitestring.cs
- Rectangle.cs
- BindingManagerDataErrorEventArgs.cs
- XmlAttributeCache.cs
- CodeCommentStatementCollection.cs
- UnhandledExceptionEventArgs.cs
- StreamGeometryContext.cs
- WpfKnownMemberInvoker.cs
- AutoCompleteStringCollection.cs
- FixedSOMElement.cs
- LocatorGroup.cs
- StorageComplexPropertyMapping.cs
- WebPartExportVerb.cs
- DESCryptoServiceProvider.cs
- BypassElement.cs
- _NestedMultipleAsyncResult.cs
- MethodToken.cs
- HttpCacheParams.cs
- _LoggingObject.cs
- Error.cs
- HostVisual.cs
- QueryReaderSettings.cs
- MarkedHighlightComponent.cs
- GenerateScriptTypeAttribute.cs
- Fault.cs
- ServiceObjectContainer.cs
- CapabilitiesUse.cs
- RawAppCommandInputReport.cs
- JpegBitmapEncoder.cs
- GradientStopCollection.cs
- PointCollectionConverter.cs
- InstanceData.cs
- Validator.cs
- MulticastOption.cs
- Function.cs
- Transform3D.cs
- Point3D.cs
- TypeLoadException.cs
- DefaultBindingPropertyAttribute.cs
- XmlSchemaCompilationSettings.cs
- Rights.cs
- GeometryDrawing.cs
- StateInitialization.cs
- CurrencyWrapper.cs
- WinEventHandler.cs
- RMEnrollmentPage3.cs
- XPathDocumentNavigator.cs
- SmtpClient.cs
- DuplexSecurityProtocolFactory.cs
- JoinSymbol.cs
- ADMembershipProvider.cs
- ClientFactory.cs
- FilteredReadOnlyMetadataCollection.cs
- XmlResolver.cs
- coordinatorscratchpad.cs
- HttpDictionary.cs
- XmlWhitespace.cs
- WmlImageAdapter.cs
- SafeProcessHandle.cs
- TemplateXamlParser.cs
- FilteredDataSetHelper.cs
- LostFocusEventManager.cs
- BezierSegment.cs
- ProgressiveCrcCalculatingStream.cs
- SAPICategories.cs
- ValueType.cs
- BehaviorService.cs
- BulletChrome.cs
- HttpCachePolicyWrapper.cs
- RelatedCurrencyManager.cs
- GC.cs