Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Media / FontFamilyValueSerializer.cs / 1 / FontFamilyValueSerializer.cs
//+------------------------------------------------------------------------ // // Microsoft Windows Client Platform // Copyright (C) Microsoft Corporation, 2002 // // File: FontFamilyValueSerializer.cs // // Contents: FontFamilyValueSerializer implementation // // Created: 6-20-2005 Chuck Jazdzewski ([....]) // //----------------------------------------------------------------------- using System.ComponentModel; using System.Globalization; using System.Windows.Markup; // Allow suppression of presharp warnings #pragma warning disable 1634, 1691 namespace System.Windows.Media { ////// Serializer for a FontFamily /// public class FontFamilyValueSerializer: ValueSerializer { ////// Returns true. FontFamilyValueSerializer can always convert from a string. /// public override bool CanConvertFromString(string value, IValueSerializerContext context) { return true; } ////// Creates a FontFamily from a string /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (string.IsNullOrEmpty(value)) { throw GetConvertFromException(value); } return new FontFamily(value); } ////// Returns true if the FontFamily is a named font family. /// public override bool CanConvertToString(object value, IValueSerializerContext context) { FontFamily fontFamily = value as FontFamily; // Suppress PRESharp warning that fontFamily can be null; apparently PRESharp // doesn't understand short circuit evaluation of operator &&. #pragma warning suppress 56506 return fontFamily != null && fontFamily.Source != null && fontFamily.Source.Length != 0; } ////// Converts a font family to a string. /// public override string ConvertToString(object value, IValueSerializerContext context) { FontFamily fontFamily = value as FontFamily; if (fontFamily == null || fontFamily.Source == null) throw GetConvertToException(value, typeof(string)); return fontFamily.Source; } } } // 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, 2002 // // File: FontFamilyValueSerializer.cs // // Contents: FontFamilyValueSerializer implementation // // Created: 6-20-2005 Chuck Jazdzewski ([....]) // //----------------------------------------------------------------------- using System.ComponentModel; using System.Globalization; using System.Windows.Markup; // Allow suppression of presharp warnings #pragma warning disable 1634, 1691 namespace System.Windows.Media { ////// Serializer for a FontFamily /// public class FontFamilyValueSerializer: ValueSerializer { ////// Returns true. FontFamilyValueSerializer can always convert from a string. /// public override bool CanConvertFromString(string value, IValueSerializerContext context) { return true; } ////// Creates a FontFamily from a string /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (string.IsNullOrEmpty(value)) { throw GetConvertFromException(value); } return new FontFamily(value); } ////// Returns true if the FontFamily is a named font family. /// public override bool CanConvertToString(object value, IValueSerializerContext context) { FontFamily fontFamily = value as FontFamily; // Suppress PRESharp warning that fontFamily can be null; apparently PRESharp // doesn't understand short circuit evaluation of operator &&. #pragma warning suppress 56506 return fontFamily != null && fontFamily.Source != null && fontFamily.Source.Length != 0; } ////// Converts a font family to a string. /// public override string ConvertToString(object value, IValueSerializerContext context) { FontFamily fontFamily = value as FontFamily; if (fontFamily == null || fontFamily.Source == null) throw GetConvertToException(value, typeof(string)); return fontFamily.Source; } } } // 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
- BitmapEffectDrawingContent.cs
- ControlCachePolicy.cs
- LayoutTable.cs
- HealthMonitoringSection.cs
- SafeArrayRankMismatchException.cs
- AttributeCollection.cs
- CompilerTypeWithParams.cs
- DictionaryKeyPropertyAttribute.cs
- UnhandledExceptionEventArgs.cs
- ToolboxItemCollection.cs
- NavigationCommands.cs
- BuildProvidersCompiler.cs
- BooleanFacetDescriptionElement.cs
- RunWorkerCompletedEventArgs.cs
- WpfWebRequestHelper.cs
- ParagraphResult.cs
- DataGridViewSelectedCellCollection.cs
- SvcMapFile.cs
- NumberSubstitution.cs
- SspiNegotiationTokenAuthenticatorState.cs
- DependencyPropertyKey.cs
- altserialization.cs
- SortExpressionBuilder.cs
- HttpModule.cs
- XmlResolver.cs
- EncoderReplacementFallback.cs
- TypeDelegator.cs
- PackageProperties.cs
- GeneralTransformGroup.cs
- Journal.cs
- WebPartTransformerCollection.cs
- ProcessInfo.cs
- WebServiceAttribute.cs
- EditorZone.cs
- BeginCreateSecurityTokenRequest.cs
- ThreadExceptionDialog.cs
- ItemMap.cs
- Visual3DCollection.cs
- ExtensionsSection.cs
- RowsCopiedEventArgs.cs
- DisplayMemberTemplateSelector.cs
- ByeMessage11.cs
- ToolZone.cs
- BuildProvider.cs
- ConfigurationLocationCollection.cs
- SQLDateTimeStorage.cs
- PointLightBase.cs
- TextRenderer.cs
- Renderer.cs
- ButtonStandardAdapter.cs
- DSACryptoServiceProvider.cs
- BinaryCommonClasses.cs
- EventEntry.cs
- PageAsyncTaskManager.cs
- ObjectDataSourceEventArgs.cs
- SafeLocalAllocation.cs
- NativeMethods.cs
- FtpWebRequest.cs
- DataIdProcessor.cs
- RepeatBehaviorConverter.cs
- ProfileService.cs
- QilBinary.cs
- BaseParser.cs
- DynamicEntity.cs
- TextBreakpoint.cs
- EncryptedType.cs
- WindowsIPAddress.cs
- Stack.cs
- Pens.cs
- SchemaComplexType.cs
- ChtmlPhoneCallAdapter.cs
- PerspectiveCamera.cs
- SafeSystemMetrics.cs
- Pointer.cs
- TreeViewItemAutomationPeer.cs
- SecureStringHasher.cs
- DrawingCollection.cs
- Vertex.cs
- FormatControl.cs
- StylusShape.cs
- EntityDataSourceStatementEditorForm.cs
- HandlerFactoryWrapper.cs
- SelectionRangeConverter.cs
- SafeNativeMethodsMilCoreApi.cs
- HttpRuntimeSection.cs
- EntityViewGenerator.cs
- OpenCollectionAsyncResult.cs
- SymmetricAlgorithm.cs
- PenThreadWorker.cs
- PreviewKeyDownEventArgs.cs
- JavascriptCallbackResponseProperty.cs
- DataDocumentXPathNavigator.cs
- ObjectDataSourceFilteringEventArgs.cs
- StringReader.cs
- Group.cs
- TextFragmentEngine.cs
- GridItem.cs
- DockPattern.cs
- GridViewColumnHeaderAutomationPeer.cs
- AppDomain.cs