Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Core / CSharp / System / Windows / Media3D / Converters / Generated / Vector3DValueSerializer.cs / 1 / Vector3DValueSerializer.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 { ////// Vector3DValueSerializer - ValueSerializer class for converting instances of strings to and from Vector3D instances /// This is used by the MarkupWriter class. /// public class Vector3DValueSerializer : 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 Vector3D)) { return false; } return true; } ////// Converts a string into a Vector3D. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Vector3D.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 Vector3D) { Vector3D instance = (Vector3D) 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 { ////// Vector3DValueSerializer - ValueSerializer class for converting instances of strings to and from Vector3D instances /// This is used by the MarkupWriter class. /// public class Vector3DValueSerializer : 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 Vector3D)) { return false; } return true; } ////// Converts a string into a Vector3D. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Vector3D.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 Vector3D) { Vector3D instance = (Vector3D) 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
- Executor.cs
- QueryContinueDragEventArgs.cs
- NeutralResourcesLanguageAttribute.cs
- HMACSHA384.cs
- XPathSelfQuery.cs
- RenderData.cs
- XPathParser.cs
- MimeFormImporter.cs
- FormViewDeletedEventArgs.cs
- SharedStatics.cs
- SpecularMaterial.cs
- CryptoApi.cs
- dataprotectionpermissionattribute.cs
- PointCollection.cs
- DynamicFilterExpression.cs
- UIElement3D.cs
- ArithmeticException.cs
- CryptoStream.cs
- TextAutomationPeer.cs
- RotateTransform3D.cs
- TextServicesPropertyRanges.cs
- EpmSourceTree.cs
- EdmComplexTypeAttribute.cs
- WebDescriptionAttribute.cs
- WebPartRestoreVerb.cs
- NativeMethodsOther.cs
- TransactionScope.cs
- JoinSymbol.cs
- UnsafeNativeMethodsMilCoreApi.cs
- SqlBulkCopyColumnMapping.cs
- Evidence.cs
- ExpandedProjectionNode.cs
- TreeIterator.cs
- OleDbMetaDataFactory.cs
- ToolboxItemFilterAttribute.cs
- StateMachineWorkflowInstance.cs
- CollectionChangeEventArgs.cs
- DataMember.cs
- PrintDialog.cs
- CommandExpr.cs
- RotateTransform3D.cs
- ScrollData.cs
- InputLanguageCollection.cs
- RegexParser.cs
- TrackingServices.cs
- Processor.cs
- OleDbRowUpdatingEvent.cs
- IBuiltInEvidence.cs
- PageSetupDialog.cs
- ConnectionProviderAttribute.cs
- Encoding.cs
- WebDescriptionAttribute.cs
- SharedConnectionWorkflowTransactionService.cs
- TemplateControlParser.cs
- StringWriter.cs
- TextDocumentView.cs
- DataTableCollection.cs
- JsonFormatReaderGenerator.cs
- CultureNotFoundException.cs
- DynamicDiscoSearcher.cs
- ButtonStandardAdapter.cs
- CurrentChangedEventManager.cs
- VariantWrapper.cs
- HwndPanningFeedback.cs
- ContentTypeSettingClientMessageFormatter.cs
- CachedFontFace.cs
- JavaScriptObjectDeserializer.cs
- XPathAncestorQuery.cs
- DataBoundControlAdapter.cs
- TrailingSpaceComparer.cs
- Literal.cs
- DataBoundControlHelper.cs
- ContractMapping.cs
- UnitControl.cs
- relpropertyhelper.cs
- ListViewAutomationPeer.cs
- recordstate.cs
- HtmlTernaryTree.cs
- AppSettingsSection.cs
- counter.cs
- LinkClickEvent.cs
- CompileLiteralTextParser.cs
- HtmlElementCollection.cs
- SelectionProcessor.cs
- QueueNameHelper.cs
- ProtocolImporter.cs
- SequenceDesignerAccessibleObject.cs
- BulletedList.cs
- DispatchChannelSink.cs
- SQLSingleStorage.cs
- SystemTcpConnection.cs
- StylusDevice.cs
- TimeSpanConverter.cs
- CollectionConverter.cs
- UInt32Converter.cs
- XsltException.cs
- RegexRunner.cs
- SurrogateEncoder.cs
- _LazyAsyncResult.cs
- FormsIdentity.cs