Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media3D / Converters / Generated / Vector3DCollectionValueSerializer.cs / 1 / Vector3DCollectionValueSerializer.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 { ////// Vector3DCollectionValueSerializer - ValueSerializer class for converting instances of strings to and from Vector3DCollection instances /// This is used by the MarkupWriter class. /// public class Vector3DCollectionValueSerializer : 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 Vector3DCollection)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Vector3DCollection"), "value"); } return true; } ////// Converts a string into a Vector3DCollection. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Vector3DCollection.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 Vector3DCollection) { Vector3DCollection instance = (Vector3DCollection) 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
- PassportAuthentication.cs
- Util.cs
- PasswordTextNavigator.cs
- PeerCustomResolverElement.cs
- SessionEndedEventArgs.cs
- QuadraticBezierSegment.cs
- GridItemProviderWrapper.cs
- SelectionProviderWrapper.cs
- TakeQueryOptionExpression.cs
- TextTreePropertyUndoUnit.cs
- Context.cs
- ClientApiGenerator.cs
- StorageComplexPropertyMapping.cs
- ConfigurationElementCollection.cs
- Vector3DCollection.cs
- ResourcePool.cs
- UnsafeNativeMethodsTablet.cs
- StretchValidation.cs
- ProfileService.cs
- IndexExpression.cs
- TimeoutException.cs
- DbDataReader.cs
- TextRangeEdit.cs
- QueryResults.cs
- GenericWebPart.cs
- DirectionalLight.cs
- DesignerTransactionCloseEvent.cs
- DragDrop.cs
- SqlConnection.cs
- ByteRangeDownloader.cs
- SymbolTable.cs
- ResourceDisplayNameAttribute.cs
- HttpPostedFile.cs
- LabelAutomationPeer.cs
- RegexInterpreter.cs
- WindowsListViewItem.cs
- DependencyObjectType.cs
- InkCanvasFeedbackAdorner.cs
- HtmlImage.cs
- WhileDesigner.xaml.cs
- MDIWindowDialog.cs
- SiteMembershipCondition.cs
- JournalEntryListConverter.cs
- ImageInfo.cs
- QilLiteral.cs
- _OverlappedAsyncResult.cs
- CommonEndpointBehaviorElement.cs
- RTLAwareMessageBox.cs
- BufferedGraphics.cs
- ArithmeticException.cs
- ThaiBuddhistCalendar.cs
- LocatorPart.cs
- NumberFunctions.cs
- SymbolEqualComparer.cs
- FontCollection.cs
- XmlNode.cs
- GifBitmapDecoder.cs
- MobileUserControlDesigner.cs
- OperationGenerator.cs
- EditorPart.cs
- CompModSwitches.cs
- ImageSource.cs
- XXXOnTypeBuilderInstantiation.cs
- RegexFCD.cs
- CompiledRegexRunnerFactory.cs
- DocumentDesigner.cs
- NameTable.cs
- NativeObjectSecurity.cs
- ObjectViewFactory.cs
- NullEntityWrapper.cs
- TableRow.cs
- LabelDesigner.cs
- ModuleConfigurationInfo.cs
- DataChangedEventManager.cs
- PolyBezierSegment.cs
- FontFamilyValueSerializer.cs
- ReadOnlyAttribute.cs
- XmlSchemaDocumentation.cs
- TypedTableBase.cs
- DataTableNewRowEvent.cs
- XmlDigitalSignatureProcessor.cs
- ChangeConflicts.cs
- PluralizationService.cs
- ChannelHandler.cs
- AutoScrollExpandMessageFilter.cs
- TypeLoadException.cs
- QuadraticBezierSegment.cs
- GridViewSelectEventArgs.cs
- PrintDialogDesigner.cs
- WeakReference.cs
- InstanceContext.cs
- UIElement.cs
- CriticalExceptions.cs
- NumberSubstitution.cs
- VoiceInfo.cs
- FixedSOMLineRanges.cs
- AsyncContentLoadedEventArgs.cs
- WebRequestModulesSection.cs
- EventEntry.cs
- DirectoryInfo.cs