Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media3D / Converters / Generated / Rect3DValueSerializer.cs / 1 / Rect3DValueSerializer.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 { ////// Rect3DValueSerializer - ValueSerializer class for converting instances of strings to and from Rect3D instances /// This is used by the MarkupWriter class. /// public class Rect3DValueSerializer : 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 Rect3D)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Rect3D"), "value"); } return true; } ////// Converts a string into a Rect3D. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Rect3D.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 Rect3D) { Rect3D instance = (Rect3D) 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
- ListItemConverter.cs
- InternalsVisibleToAttribute.cs
- SettingsPropertyWrongTypeException.cs
- PropertyChangingEventArgs.cs
- SapiRecognizer.cs
- ConnectionPoolManager.cs
- ScriptingJsonSerializationSection.cs
- WebPartEditorApplyVerb.cs
- Invariant.cs
- LexicalChunk.cs
- ForeignConstraint.cs
- ObjectDisposedException.cs
- MenuItemCollection.cs
- SchemaNotation.cs
- GroupQuery.cs
- InProcStateClientManager.cs
- EncodingInfo.cs
- StorageInfo.cs
- BindingManagerDataErrorEventArgs.cs
- HtmlFormWrapper.cs
- DataTableClearEvent.cs
- SmtpNegotiateAuthenticationModule.cs
- linebase.cs
- WebAdminConfigurationHelper.cs
- FrameworkElement.cs
- SoapExtensionImporter.cs
- HttpCacheVary.cs
- TargetException.cs
- TypeConverter.cs
- ToolStripActionList.cs
- Identity.cs
- XMLSyntaxException.cs
- METAHEADER.cs
- MouseEvent.cs
- ReflectionUtil.cs
- OdbcEnvironmentHandle.cs
- InteropAutomationProvider.cs
- SqlCacheDependencyDatabaseCollection.cs
- AssemblyInfo.cs
- PropertyGridEditorPart.cs
- FileDialogCustomPlace.cs
- RealProxy.cs
- Lease.cs
- PerfService.cs
- RuntimeConfigLKG.cs
- CompressStream.cs
- RemoteWebConfigurationHostStream.cs
- ClosableStream.cs
- SessionStateSection.cs
- Identity.cs
- HtmlButton.cs
- CompositeFontFamily.cs
- CSharpCodeProvider.cs
- CodeBlockBuilder.cs
- ControlsConfig.cs
- ClientConfigurationHost.cs
- MultidimensionalArrayItemReference.cs
- TokenBasedSetEnumerator.cs
- WindowsAltTab.cs
- MachineKeyValidationConverter.cs
- ElementHostPropertyMap.cs
- DataGrid.cs
- FixedPageStructure.cs
- SQLDouble.cs
- ExternalDataExchangeService.cs
- DataBindingCollection.cs
- AnnotationHighlightLayer.cs
- FlowThrottle.cs
- CLSCompliantAttribute.cs
- RenderingEventArgs.cs
- ActiveXSite.cs
- ContextBase.cs
- BaseParagraph.cs
- EntityPropertyMappingAttribute.cs
- InvokeSchedule.cs
- Attachment.cs
- DbConnectionPoolGroupProviderInfo.cs
- ExpressionLink.cs
- ConcurrentBag.cs
- SupportingTokenDuplexChannel.cs
- XPathNodeHelper.cs
- MustUnderstandSoapException.cs
- UserPersonalizationStateInfo.cs
- StatusBar.cs
- FloatUtil.cs
- DeviceFiltersSection.cs
- XamlClipboardData.cs
- ObjectStorage.cs
- DesignTimeParseData.cs
- CmsInterop.cs
- WindowsIdentity.cs
- DoubleSumAggregationOperator.cs
- PaperSize.cs
- Subtree.cs
- DependencyPropertyDescriptor.cs
- DbMetaDataColumnNames.cs
- CommentAction.cs
- XmlAttributeAttribute.cs
- MembershipSection.cs
- WebRequestModuleElementCollection.cs