Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Base / System / Windows / Media / Converters / Generated / MatrixValueSerializer.cs / 2 / MatrixValueSerializer.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.Media.Converters; using System.Windows; using System.Windows.Media; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Media.Converters { ////// MatrixValueSerializer - ValueSerializer class for converting instances of strings to and from Matrix instances /// This is used by the MarkupWriter class. /// public class MatrixValueSerializer : 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 Matrix)) { return false; } return true; } ////// Converts a string into a Matrix. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Matrix.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 Matrix) { Matrix instance = (Matrix) value; #pragma warning suppress 6506 // instance is obviously not null return instance.ConvertToString(null, System.Windows.Markup.TypeConverterHelper.EnglishUSCulture ); } 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.Media.Converters; using System.Windows; using System.Windows.Media; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Media.Converters { ////// MatrixValueSerializer - ValueSerializer class for converting instances of strings to and from Matrix instances /// This is used by the MarkupWriter class. /// public class MatrixValueSerializer : 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 Matrix)) { return false; } return true; } ////// Converts a string into a Matrix. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Matrix.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 Matrix) { Matrix instance = (Matrix) value; #pragma warning suppress 6506 // instance is obviously not null return instance.ConvertToString(null, System.Windows.Markup.TypeConverterHelper.EnglishUSCulture ); } 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
- TreeViewCancelEvent.cs
- DbExpressionVisitor_TResultType.cs
- TextDocumentView.cs
- VisualProxy.cs
- DecimalConverter.cs
- WebZone.cs
- GenericWebPart.cs
- SerializationHelper.cs
- HandlerFactoryCache.cs
- ClientRuntimeConfig.cs
- TdsParserStaticMethods.cs
- GenerateTemporaryTargetAssembly.cs
- DispatchWrapper.cs
- MediaSystem.cs
- ClockGroup.cs
- ByteViewer.cs
- MSAANativeProvider.cs
- GcHandle.cs
- CompositeScriptReference.cs
- GridLength.cs
- NeutralResourcesLanguageAttribute.cs
- XmlWrappingReader.cs
- SkinBuilder.cs
- CommonGetThemePartSize.cs
- SecurityElement.cs
- UserValidatedEventArgs.cs
- TypeExtensions.cs
- CacheAxisQuery.cs
- SqlDependencyUtils.cs
- PenLineCapValidation.cs
- AsyncResult.cs
- XamlStream.cs
- EmptyReadOnlyDictionaryInternal.cs
- Pipe.cs
- SpotLight.cs
- BinaryParser.cs
- PropertyIDSet.cs
- BCryptNative.cs
- ConfigXmlSignificantWhitespace.cs
- CodeSnippetTypeMember.cs
- FixedSOMTableRow.cs
- SqlDataSourceView.cs
- EventLogPermissionAttribute.cs
- x509utils.cs
- DesignerDataSchemaClass.cs
- Deflater.cs
- coordinator.cs
- Sql8ExpressionRewriter.cs
- CacheMode.cs
- SymDocumentType.cs
- BookmarkScope.cs
- ResourceReferenceExpression.cs
- MDIWindowDialog.cs
- ListItemCollection.cs
- PeerNodeTraceRecord.cs
- EntityCommand.cs
- SoapTransportImporter.cs
- DataGridViewComboBoxEditingControl.cs
- MailAddress.cs
- ClosureBinding.cs
- RuntimeArgumentHandle.cs
- Random.cs
- TryExpression.cs
- ModifyActivitiesPropertyDescriptor.cs
- DynamicQueryableWrapper.cs
- Geometry.cs
- DesignerLinkAdapter.cs
- ContextMenuStrip.cs
- EditorZone.cs
- webclient.cs
- ClientBuildManager.cs
- ImageSource.cs
- ImageListStreamer.cs
- ObjectDataSourceView.cs
- CompiledQueryCacheKey.cs
- GACMembershipCondition.cs
- RuleAction.cs
- parserscommon.cs
- ByteStreamGeometryContext.cs
- ControlCachePolicy.cs
- ScriptReferenceEventArgs.cs
- querybuilder.cs
- ConnectionManagementElement.cs
- IdentityReference.cs
- BitmapEffectState.cs
- WebPartMenuStyle.cs
- SmiMetaDataProperty.cs
- FrameDimension.cs
- OpCodes.cs
- HebrewCalendar.cs
- CodeTryCatchFinallyStatement.cs
- SqlDataSourceParameterParser.cs
- TrackBarDesigner.cs
- SQLDouble.cs
- HttpModuleActionCollection.cs
- WorkflowWebHostingModule.cs
- MinimizableAttributeTypeConverter.cs
- SynchronizationLockException.cs
- ListManagerBindingsCollection.cs
- WebPart.cs