Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / Windows / Converters / Generated / VectorValueSerializer.cs / 1305600 / VectorValueSerializer.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.WindowsBase; using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.ComponentModel.Design.Serialization; using System.Windows.Markup; using System.Windows.Converters; using System.Windows; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Converters { ////// VectorValueSerializer - ValueSerializer class for converting instances of strings to and from Vector instances /// This is used by the MarkupWriter class. /// public class VectorValueSerializer : 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 Vector)) { return false; } return true; } ////// Converts a string into a Vector. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Vector.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 Vector) { Vector instance = (Vector) value; #pragma warning suppress 6506 // instance is obviously not null return instance.ConvertToString(null, System.Windows.Markup.TypeConverterHelper.InvariantEnglishUS); } 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.WindowsBase; using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.ComponentModel.Design.Serialization; using System.Windows.Markup; using System.Windows.Converters; using System.Windows; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Converters { ////// VectorValueSerializer - ValueSerializer class for converting instances of strings to and from Vector instances /// This is used by the MarkupWriter class. /// public class VectorValueSerializer : 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 Vector)) { return false; } return true; } ////// Converts a string into a Vector. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Vector.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 Vector) { Vector instance = (Vector) value; #pragma warning suppress 6506 // instance is obviously not null return instance.ConvertToString(null, System.Windows.Markup.TypeConverterHelper.InvariantEnglishUS); } 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
- FixedTextView.cs
- ConsumerConnectionPoint.cs
- QueueProcessor.cs
- ByteStreamMessageEncoderFactory.cs
- ProxyElement.cs
- SiteMapNodeItemEventArgs.cs
- ProxyWebPart.cs
- EntityException.cs
- UIntPtr.cs
- TypeUtil.cs
- MdiWindowListStrip.cs
- SessionPageStatePersister.cs
- EncryptedData.cs
- ClientTarget.cs
- SimpleRecyclingCache.cs
- SafeViewOfFileHandle.cs
- IgnoreSectionHandler.cs
- MetadataArtifactLoaderCompositeResource.cs
- XmlSchemaGroupRef.cs
- SchemaElementLookUpTable.cs
- Parser.cs
- ValueTypeFixupInfo.cs
- Expressions.cs
- SigningProgress.cs
- ImageListStreamer.cs
- WrapPanel.cs
- Inflater.cs
- UnaryNode.cs
- DetailsViewDeletedEventArgs.cs
- KeyConstraint.cs
- CustomActivityDesigner.cs
- PropertyEntry.cs
- KeyNotFoundException.cs
- CommandBindingCollection.cs
- SoapSchemaMember.cs
- InvokePattern.cs
- DynamicMetaObject.cs
- OlePropertyStructs.cs
- DataGridState.cs
- FixedDocument.cs
- XslCompiledTransform.cs
- UInt16.cs
- ListView.cs
- ActivityWithResultWrapper.cs
- DynamicMetaObject.cs
- Stylus.cs
- SmtpNtlmAuthenticationModule.cs
- SafeRegistryKey.cs
- TargetConverter.cs
- InputProviderSite.cs
- HitTestDrawingContextWalker.cs
- SafeSecurityHelper.cs
- InputProcessorProfilesLoader.cs
- Normalization.cs
- Point3DKeyFrameCollection.cs
- HttpHeaderCollection.cs
- DesignerTransactionCloseEvent.cs
- UInt32Storage.cs
- BitmapEffectDrawingContent.cs
- StrokeIntersection.cs
- WSSecurityPolicy11.cs
- DetailsViewRowCollection.cs
- GuidelineCollection.cs
- WinCategoryAttribute.cs
- SafeProcessHandle.cs
- XmlChoiceIdentifierAttribute.cs
- WindowsListViewGroup.cs
- OdbcCommand.cs
- MetadataCollection.cs
- Rect3D.cs
- SplitterEvent.cs
- SqlDataSourceEnumerator.cs
- DbMetaDataCollectionNames.cs
- SchemaNames.cs
- MexHttpBindingCollectionElement.cs
- EventProviderWriter.cs
- DocumentSequence.cs
- AccessViolationException.cs
- EnvironmentPermission.cs
- SqlGenericUtil.cs
- SqlDependencyListener.cs
- WebConfigurationFileMap.cs
- XmlKeywords.cs
- ArrayConverter.cs
- Label.cs
- ImageAutomationPeer.cs
- PeerEndPoint.cs
- RequestTimeoutManager.cs
- SessionParameter.cs
- HttpPostProtocolReflector.cs
- WebServiceResponseDesigner.cs
- ComboBox.cs
- UInt32Converter.cs
- ConstantSlot.cs
- CompressionTransform.cs
- SmtpReplyReaderFactory.cs
- AnchoredBlock.cs
- TraceSwitch.cs
- XPathSelectionIterator.cs
- ContentElementAutomationPeer.cs