Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / Media3D / Converters / Generated / Point4DValueSerializer.cs / 2 / Point4DValueSerializer.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // This file was generated, please do not edit it directly. // // Please see http://wiki/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)) { return false; } 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. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // This file was generated, please do not edit it directly. // // Please see http://wiki/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)) { return false; } 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
- DataServiceHostWrapper.cs
- PolyBezierSegment.cs
- NGCPageContentCollectionSerializerAsync.cs
- VisualStateGroup.cs
- ConnectionStringSettingsCollection.cs
- DBAsyncResult.cs
- TripleDESCryptoServiceProvider.cs
- WindowsTooltip.cs
- ConstraintStruct.cs
- RayHitTestParameters.cs
- HtmlInputReset.cs
- BoolLiteral.cs
- ListViewItem.cs
- ThreadStartException.cs
- EraserBehavior.cs
- ValueUnavailableException.cs
- CompilerError.cs
- XmlSchemaIdentityConstraint.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- SqlNamer.cs
- SelectorAutomationPeer.cs
- PrintingPermission.cs
- XmlNodeChangedEventManager.cs
- LoginName.cs
- QuaternionConverter.cs
- ObjectListItemCollection.cs
- TabItem.cs
- DecimalSumAggregationOperator.cs
- ValidatorCollection.cs
- OutputCacheSettingsSection.cs
- ThrowHelper.cs
- PeerChannelListener.cs
- XmlSchemaRedefine.cs
- CollectionContainer.cs
- ExpressionVisitor.cs
- NumericUpDown.cs
- XmlQualifiedName.cs
- IProducerConsumerCollection.cs
- CopyAttributesAction.cs
- StorageMappingItemCollection.cs
- RightsManagementEncryptionTransform.cs
- GlobalAclOperationRequirement.cs
- CryptoKeySecurity.cs
- XslCompiledTransform.cs
- ZoneLinkButton.cs
- TransactionalPackage.cs
- NominalTypeEliminator.cs
- ZipIOLocalFileBlock.cs
- COAUTHIDENTITY.cs
- FocusTracker.cs
- ResourcesBuildProvider.cs
- ContentPlaceHolder.cs
- DataServiceQuery.cs
- Util.cs
- StorageInfo.cs
- DynamicEndpoint.cs
- TraceContextEventArgs.cs
- xml.cs
- Attachment.cs
- AssemblyHash.cs
- GeometryDrawing.cs
- QilFactory.cs
- LinkClickEvent.cs
- InputProcessorProfilesLoader.cs
- ConfigXmlElement.cs
- BaseDataBoundControl.cs
- FixedSOMGroup.cs
- PanelStyle.cs
- TargetException.cs
- IteratorDescriptor.cs
- InteropExecutor.cs
- CompoundFileIOPermission.cs
- DropShadowEffect.cs
- RootProfilePropertySettingsCollection.cs
- ByteStreamMessageUtility.cs
- ChangePassword.cs
- CryptoApi.cs
- CompatibleComparer.cs
- DataViewSetting.cs
- RevocationPoint.cs
- AddressingVersion.cs
- ModuleBuilder.cs
- OrderedDictionaryStateHelper.cs
- GlyphingCache.cs
- SigningDialog.cs
- VariableAction.cs
- prompt.cs
- ClientFormsAuthenticationCredentials.cs
- OperationPickerDialog.designer.cs
- DiscoveryClientProtocol.cs
- XmlAnyAttributeAttribute.cs
- ContextProperty.cs
- XmlDataSourceView.cs
- BitmapSizeOptions.cs
- MenuStrip.cs
- Material.cs
- TransformGroup.cs
- CodeTypeReferenceCollection.cs
- LogSwitch.cs
- SafeRightsManagementPubHandle.cs