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
- regiisutil.cs
- OdbcConnectionStringbuilder.cs
- DataControlCommands.cs
- ScaleTransform3D.cs
- ConcatQueryOperator.cs
- Drawing.cs
- StringToken.cs
- SqlLiftIndependentRowExpressions.cs
- EventLogEntryCollection.cs
- ScalarConstant.cs
- NativeMsmqMessage.cs
- MarkerProperties.cs
- GC.cs
- ExpandSegment.cs
- AnimationException.cs
- ColorConvertedBitmap.cs
- EnumMember.cs
- TileModeValidation.cs
- PropertyTabChangedEvent.cs
- ComPlusContractBehavior.cs
- SqlServer2KCompatibilityCheck.cs
- RegexMatchCollection.cs
- BulletedListEventArgs.cs
- PerformanceCounterCategory.cs
- WindowsStartMenu.cs
- WMIInterop.cs
- HandlerBase.cs
- QueryStringParameter.cs
- CalendarBlackoutDatesCollection.cs
- Int32CollectionConverter.cs
- securitycriticaldataformultiplegetandset.cs
- Scheduling.cs
- SqlDelegatedTransaction.cs
- DataChangedEventManager.cs
- NumericUpDownAcceleration.cs
- EncoderExceptionFallback.cs
- EncoderNLS.cs
- MSHTMLHostUtil.cs
- Grid.cs
- AnimatedTypeHelpers.cs
- StringConcat.cs
- FormsAuthenticationUser.cs
- DataGridComboBoxColumn.cs
- Propagator.JoinPropagator.cs
- RootBuilder.cs
- ExtensionFile.cs
- AlphabeticalEnumConverter.cs
- ArrayConverter.cs
- TemplateBindingExtension.cs
- OrCondition.cs
- ApplicationManager.cs
- SupportingTokenListenerFactory.cs
- ModelVisual3D.cs
- ResizeGrip.cs
- ComplexLine.cs
- CodeConstructor.cs
- WebPartAddingEventArgs.cs
- ObjectHandle.cs
- ProjectionPlan.cs
- TraceUtils.cs
- Delegate.cs
- SignatureDescription.cs
- ProfilePropertyNameValidator.cs
- CommentAction.cs
- PerformanceCounterManager.cs
- NativeMethods.cs
- OleDbFactory.cs
- ProfilePropertySettingsCollection.cs
- SamlAssertion.cs
- SQLInt64.cs
- CommandID.cs
- KeyGesture.cs
- BooleanExpr.cs
- ImplicitInputBrush.cs
- CategoryNameCollection.cs
- WebException.cs
- ClonableStack.cs
- _UncName.cs
- PerformanceCounterManager.cs
- EmptyCollection.cs
- DataServiceQueryException.cs
- HwndSourceParameters.cs
- SrgsElementFactoryCompiler.cs
- MetabaseServerConfig.cs
- Roles.cs
- ExpressionConverter.cs
- WebBrowserSiteBase.cs
- StylusPointCollection.cs
- CursorConverter.cs
- IndicShape.cs
- embossbitmapeffect.cs
- BindingBase.cs
- Debug.cs
- JpegBitmapEncoder.cs
- Registry.cs
- SerializerProvider.cs
- AuthenticationManager.cs
- ConfigurationSchemaErrors.cs
- InstancePersistenceCommand.cs
- Tablet.cs