Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media3D / Converters / Generated / Point4DValueSerializer.cs / 1 / Point4DValueSerializer.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // This file was generated, please do not edit it directly. // // Please see [....]/default.aspx/Microsoft.Projects.Avalon/MilCodeGen.html for more information. // //--------------------------------------------------------------------------- using MS.Internal; using MS.Internal.Collections; using MS.Internal.PresentationCore; using MS.Utility; using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.Text; using System.Windows.Markup; using System.Windows.Media.Media3D.Converters; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Security; using System.Security.Permissions; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; using System.Windows.Media.Imaging; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Media.Media3D.Converters { ////// Point4DValueSerializer - ValueSerializer class for converting instances of strings to and from Point4D instances /// This is used by the MarkupWriter class. /// public class Point4DValueSerializer : ValueSerializer { ////// Returns true. /// public override bool CanConvertFromString(string value, IValueSerializerContext context) { return true; } ////// Returns true if the given value can be converted into a string /// public override bool CanConvertToString(object value, IValueSerializerContext context) { // Validate the input type if (!(value is Point4D)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Point4D"), "value"); } return true; } ////// Converts a string into a Point4D. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Point4D.Parse(value ); } else { return base.ConvertFromString( value, context ); } } ////// Converts the value into a string. /// public override string ConvertToString(object value, IValueSerializerContext context) { if (value is Point4D) { Point4D instance = (Point4D) value; #pragma warning suppress 6506 // instance is obviously not null return instance.ConvertToString(null, CultureInfo.GetCultureInfo("en-us") ); } return base.ConvertToString(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
- AbstractExpressions.cs
- UriPrefixTable.cs
- GridLengthConverter.cs
- EnlistmentTraceIdentifier.cs
- DragEvent.cs
- DynamicActionMessageFilter.cs
- FontDifferentiator.cs
- SafeEventHandle.cs
- ObjectTag.cs
- DecimalAnimationUsingKeyFrames.cs
- XmlnsDictionary.cs
- LaxModeSecurityHeaderElementInferenceEngine.cs
- InvalidProgramException.cs
- Directory.cs
- Rect.cs
- InputLanguageProfileNotifySink.cs
- DrawingContextDrawingContextWalker.cs
- BaseProcessor.cs
- DSASignatureFormatter.cs
- DecoderExceptionFallback.cs
- RectangleF.cs
- OracleString.cs
- RSACryptoServiceProvider.cs
- EFTableProvider.cs
- MarkupProperty.cs
- MessageBox.cs
- DefaultSettingsSection.cs
- CalendarKeyboardHelper.cs
- EntityDesignPluralizationHandler.cs
- StylusPlugin.cs
- ReadOnlyCollectionBuilder.cs
- RelationshipManager.cs
- HttpCachePolicy.cs
- StringUtil.cs
- ConfigXmlComment.cs
- SystemInfo.cs
- DataGridViewEditingControlShowingEventArgs.cs
- hresults.cs
- PropertyOverridesTypeEditor.cs
- FileUtil.cs
- ChtmlLinkAdapter.cs
- ScrollChrome.cs
- SimpleWorkerRequest.cs
- HttpBindingExtension.cs
- CommonProperties.cs
- EventSourceCreationData.cs
- OleDbCommand.cs
- QuaternionAnimation.cs
- NamedObject.cs
- RoutedPropertyChangedEventArgs.cs
- ErrorView.xaml.cs
- XmlDataCollection.cs
- DrawItemEvent.cs
- ProtectedConfigurationSection.cs
- DataTableMapping.cs
- TextContainerHelper.cs
- ConfigurationSection.cs
- DataSourceGeneratorException.cs
- Point3DAnimationUsingKeyFrames.cs
- EventsTab.cs
- PagedDataSource.cs
- LightweightEntityWrapper.cs
- PageRanges.cs
- TransformGroup.cs
- WorkflowOperationBehavior.cs
- FieldAccessException.cs
- ReflectionHelper.cs
- WindowsTooltip.cs
- TargetException.cs
- PopOutPanel.cs
- CharAnimationBase.cs
- ContextProperty.cs
- HttpException.cs
- SHA256Managed.cs
- SqlClientWrapperSmiStreamChars.cs
- PropertyReferenceExtension.cs
- ManagementObjectSearcher.cs
- FileDialog_Vista.cs
- MsmqReceiveParameters.cs
- SamlAuthenticationStatement.cs
- InputDevice.cs
- WebControlsSection.cs
- DataGridViewCellStateChangedEventArgs.cs
- QueryAccessibilityHelpEvent.cs
- UrlPropertyAttribute.cs
- CookieHandler.cs
- WebServiceTypeData.cs
- EpmSourceTree.cs
- NameTable.cs
- ButtonField.cs
- ITextView.cs
- SqlCommandSet.cs
- DataGridCheckBoxColumn.cs
- EntityViewGenerator.cs
- PowerModeChangedEventArgs.cs
- ExportOptions.cs
- SizeF.cs
- CompositeTypefaceMetrics.cs
- ScrollChrome.cs
- SchemaDeclBase.cs