Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media3D / Converters / Generated / Point3DValueSerializer.cs / 1 / Point3DValueSerializer.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 { ////// Point3DValueSerializer - ValueSerializer class for converting instances of strings to and from Point3D instances /// This is used by the MarkupWriter class. /// public class Point3DValueSerializer : 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 Point3D)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Point3D"), "value"); } return true; } ////// Converts a string into a Point3D. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Point3D.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 Point3D) { Point3D instance = (Point3D) 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
- SeekableReadStream.cs
- AspNetRouteServiceHttpHandler.cs
- SimplePropertyEntry.cs
- ConditionalAttribute.cs
- AnnotationMap.cs
- ListViewHitTestInfo.cs
- SqlClientMetaDataCollectionNames.cs
- NavigationCommands.cs
- WizardStepBase.cs
- WebPartConnectionsCancelVerb.cs
- SourceElementsCollection.cs
- EntityContainer.cs
- DataTemplate.cs
- PrtTicket_Editor.cs
- DependentTransaction.cs
- DbCommandTree.cs
- XmlAttribute.cs
- TextInfo.cs
- CompatibleComparer.cs
- TextBoxRenderer.cs
- _CacheStreams.cs
- CachedBitmap.cs
- MissingFieldException.cs
- ExtenderControl.cs
- HttpWebRequestElement.cs
- RegexFCD.cs
- QilBinary.cs
- _LazyAsyncResult.cs
- ThemeConfigurationDialog.cs
- GridViewColumnHeader.cs
- PersonalizationStateInfoCollection.cs
- ActionItem.cs
- PagesSection.cs
- WinInetCache.cs
- XamlReaderConstants.cs
- Policy.cs
- DataServiceBehavior.cs
- WizardForm.cs
- ToolStripItemImageRenderEventArgs.cs
- EventSinkHelperWriter.cs
- SafeNativeMethods.cs
- ContentTextAutomationPeer.cs
- SchemaAttDef.cs
- TreeNodeSelectionProcessor.cs
- XamlBuildProvider.cs
- OdbcEnvironment.cs
- DelegateTypeInfo.cs
- WindowsRichEditRange.cs
- TransformerInfoCollection.cs
- ZoneIdentityPermission.cs
- AssemblyFilter.cs
- FixedTextPointer.cs
- ConfigurationStrings.cs
- OperatingSystemVersionCheck.cs
- ObjectDataSourceDisposingEventArgs.cs
- FormsAuthentication.cs
- HwndSubclass.cs
- ToolBarButton.cs
- FontSizeConverter.cs
- SevenBitStream.cs
- DetailsViewRowCollection.cs
- EndOfStreamException.cs
- IPEndPoint.cs
- MetadataArtifactLoaderFile.cs
- AttributeAction.cs
- AttachedAnnotationChangedEventArgs.cs
- RtfControlWordInfo.cs
- GroupByQueryOperator.cs
- SettingsPropertyValueCollection.cs
- _TLSstream.cs
- SessionPageStateSection.cs
- ComboBoxItem.cs
- SamlDoNotCacheCondition.cs
- Overlapped.cs
- messageonlyhwndwrapper.cs
- InputBuffer.cs
- LocalizedNameDescriptionPair.cs
- SortFieldComparer.cs
- Clipboard.cs
- ButtonField.cs
- AlternationConverter.cs
- FieldAccessException.cs
- FixedSOMTableRow.cs
- Registry.cs
- EffectiveValueEntry.cs
- AnnotationComponentChooser.cs
- TransactionProtocolConverter.cs
- LateBoundBitmapDecoder.cs
- Size3D.cs
- CorrelationValidator.cs
- WebSysDefaultValueAttribute.cs
- GridEntry.cs
- Content.cs
- SynchronousSendBindingElement.cs
- DtdParser.cs
- CacheRequest.cs
- HTTPRemotingHandler.cs
- ReachPrintTicketSerializer.cs
- XmlObjectSerializerReadContextComplex.cs
- ValueUnavailableException.cs