Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Animation / AnimationException.cs / 1 / AnimationException.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // //--------------------------------------------------------------------------- using System; using System.Runtime.Serialization; using System.Windows.Media.Animation; using MS.Internal.PresentationCore; // SR, SRID namespace System.Windows.Media.Animation { ////// This is a wrapped exception designed to be thrown when we encounter an exception in /// the process of animating. It provides the AnimationClock controlling the animation, /// the DependencyProperty on which the animation is applied, and IAnimatable target /// element on which the DependencyProperty is set. /// [Serializable] public sealed class AnimationException : SystemException { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Internal Constructor /// /// /// /// /// /// internal AnimationException( AnimationClock clock, DependencyProperty property, IAnimatable target, string message, Exception innerException) : base(message, innerException) { _clock = clock; _property = property; _targetElement = target; } ////// Constructor used to deserialize the exception /// /// /// private AnimationException(SerializationInfo info, StreamingContext context) : base(info, context) { } #endregion // Constructors //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- #region Public Properties ////// Clock represents the AnimationClock currently animating the /// DependencyObject / DependencyProperty pair. /// public AnimationClock Clock { get { return _clock; } } ////// Property represents the DependencyProperty that is being animated. The DependencyObject /// on which this property is set is the Target. /// public DependencyProperty Property { get { return _property; } } ////// Target represents the IAnimatable on which the animation is being applied; /// it is the IAnimatable DependencyObject on which 'Property' has been set /// public IAnimatable Target { get { return _targetElement; } } #endregion // Public Properties //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields [NonSerialized] private AnimationClock _clock; [NonSerialized] private DependencyProperty _property; [NonSerialized] private IAnimatable _targetElement; #endregion // Private Fields } } // 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
- XPathAxisIterator.cs
- ConsoleKeyInfo.cs
- LoginName.cs
- ProfileService.cs
- KnownTypesProvider.cs
- ContentHostHelper.cs
- Publisher.cs
- PersonalizablePropertyEntry.cs
- AgileSafeNativeMemoryHandle.cs
- XhtmlBasicTextBoxAdapter.cs
- Helpers.cs
- AbsoluteQuery.cs
- TemplateControlParser.cs
- SqlDataSourceCache.cs
- RSAPKCS1KeyExchangeFormatter.cs
- AttachedPropertyBrowsableAttribute.cs
- SoapIncludeAttribute.cs
- Form.cs
- CodeExporter.cs
- VectorCollectionConverter.cs
- ComplexLine.cs
- ObjectSpanRewriter.cs
- MiniAssembly.cs
- MultiSelectRootGridEntry.cs
- DetailsViewDeleteEventArgs.cs
- ExpandSegmentCollection.cs
- TableSectionStyle.cs
- LineBreakRecord.cs
- DragDrop.cs
- SQLBytesStorage.cs
- WorkflowRuntimeService.cs
- LoginView.cs
- InProcStateClientManager.cs
- ClientScriptManagerWrapper.cs
- ConnectionDemuxer.cs
- BufferedWebEventProvider.cs
- HtmlElementErrorEventArgs.cs
- CompoundFileStorageReference.cs
- PngBitmapDecoder.cs
- DesignerCalendarAdapter.cs
- ColumnBinding.cs
- UnsafeNativeMethodsCLR.cs
- ParserOptions.cs
- Module.cs
- IgnoreSection.cs
- ResourceDescriptionAttribute.cs
- _StreamFramer.cs
- CultureInfoConverter.cs
- SQLBinary.cs
- JsonWriterDelegator.cs
- ProtocolsConfigurationEntry.cs
- GridViewRowPresenter.cs
- BitmapEffectCollection.cs
- UrlMappingsModule.cs
- ViewStateException.cs
- GeneralTransform.cs
- EndOfStreamException.cs
- XamlReader.cs
- FieldMetadata.cs
- InteropEnvironment.cs
- XmlObjectSerializerWriteContextComplexJson.cs
- SqlSelectClauseBuilder.cs
- DictionaryKeyPropertyAttribute.cs
- ExceptionHandlerDesigner.cs
- SuppressMessageAttribute.cs
- DBConnectionString.cs
- DirectoryNotFoundException.cs
- EdmComplexTypeAttribute.cs
- SvcMapFileSerializer.cs
- TemplatedMailWebEventProvider.cs
- figurelengthconverter.cs
- ServicePointManagerElement.cs
- input.cs
- SystemSounds.cs
- MissingFieldException.cs
- WindowsFormsLinkLabel.cs
- ArrayWithOffset.cs
- TextEditorSpelling.cs
- DependencyObjectCodeDomSerializer.cs
- HighContrastHelper.cs
- MessageSmuggler.cs
- _Semaphore.cs
- GorillaCodec.cs
- ComponentEditorPage.cs
- CheckBoxPopupAdapter.cs
- XmlSchemaImport.cs
- UpdateTracker.cs
- TypeSystemProvider.cs
- PackWebRequestFactory.cs
- MenuItem.cs
- Label.cs
- EntityDataSourceConfigureObjectContext.cs
- LayoutTable.cs
- DocumentSequenceHighlightLayer.cs
- TokenBasedSet.cs
- XmlNodeList.cs
- SupportingTokenBindingElement.cs
- DataBindingExpressionBuilder.cs
- FormViewInsertEventArgs.cs
- ResXBuildProvider.cs