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
- CellParagraph.cs
- HttpMethodAttribute.cs
- TextRange.cs
- ImageField.cs
- TrustLevelCollection.cs
- SoundPlayer.cs
- StrongName.cs
- StaticExtension.cs
- SmtpMail.cs
- InternalConfigHost.cs
- DirectoryObjectSecurity.cs
- SqlExpander.cs
- DBSchemaTable.cs
- MatrixKeyFrameCollection.cs
- TextEditorSpelling.cs
- ExecutionContext.cs
- LongPath.cs
- InvalidPropValue.cs
- XmlDomTextWriter.cs
- SequenceNumber.cs
- HwndMouseInputProvider.cs
- DynamicResourceExtensionConverter.cs
- WinFormsSpinner.cs
- Viewport2DVisual3D.cs
- DataTableReaderListener.cs
- WindowsListView.cs
- PeerName.cs
- CompModSwitches.cs
- StateMachine.cs
- WebPartDescriptionCollection.cs
- WebMessageBodyStyleHelper.cs
- XmlIgnoreAttribute.cs
- Guid.cs
- QueryOperatorEnumerator.cs
- BitmapEffect.cs
- Vector3DCollectionConverter.cs
- XomlCompilerHelpers.cs
- SkipQueryOptionExpression.cs
- Module.cs
- HtmlWindow.cs
- File.cs
- CollectionType.cs
- JsonByteArrayDataContract.cs
- XmlAttributeCache.cs
- BitmapPalettes.cs
- BitmapScalingModeValidation.cs
- DbConnectionHelper.cs
- EndpointAddressAugust2004.cs
- MetadataLocation.cs
- UpdatePanelControlTrigger.cs
- Encoding.cs
- SqlTrackingService.cs
- Image.cs
- ProviderCommandInfoUtils.cs
- TextElementAutomationPeer.cs
- HtmlInputButton.cs
- CheckBoxAutomationPeer.cs
- GridSplitter.cs
- ListViewInsertionMark.cs
- GiveFeedbackEventArgs.cs
- SelectionWordBreaker.cs
- DataKey.cs
- ContextMenuStripGroup.cs
- COM2PropertyDescriptor.cs
- WebPartEditorApplyVerb.cs
- WebPartConnectionsConnectVerb.cs
- IncrementalReadDecoders.cs
- UrlMappingsModule.cs
- ExpandSegment.cs
- DatePickerTextBox.cs
- PopOutPanel.cs
- SendKeys.cs
- HyperLinkStyle.cs
- DataServiceQueryProvider.cs
- dataobject.cs
- Exception.cs
- XamlRtfConverter.cs
- EventLogEntry.cs
- XmlUtil.cs
- ObjectItemAttributeAssemblyLoader.cs
- UnsafeNativeMethods.cs
- ComplexObject.cs
- TemplateBindingExpressionConverter.cs
- TreeBuilderBamlTranslator.cs
- VoiceSynthesis.cs
- DataGridViewCellStyleConverter.cs
- DataGridrowEditEndingEventArgs.cs
- DbModificationClause.cs
- PackUriHelper.cs
- CompositeCollectionView.cs
- DataGridPageChangedEventArgs.cs
- MethodSet.cs
- SourceItem.cs
- SqlNotificationEventArgs.cs
- DataStreamFromComStream.cs
- CodeTypeOfExpression.cs
- ListControl.cs
- ComplusEndpointConfigContainer.cs
- ECDsaCng.cs
- Point3DConverter.cs