Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Documents / PropertyRecord.cs / 1 / PropertyRecord.cs
//---------------------------------------------------------------------------- // // File: PropertyRecord.cs // // Description: DependencyProperty/value pair struct used by TextContainer undo. // // History: // 03/03/2004 : [....] - Created // //--------------------------------------------------------------------------- using System; namespace System.Windows.Documents { // This struct records DependencyProperty/value pairs. We use the struct // extensively because LocalValueEnumerators may not be cached safely. // It is identical to base's LocalValueEntry except that it adds setters. internal struct PropertyRecord { internal DependencyProperty Property { get { return _property; } set { _property = value; } } internal object Value { get { return _value; } set { _value = value; } } private DependencyProperty _property; private object _value; } } // 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
- RedistVersionInfo.cs
- DecimalFormatter.cs
- OdbcPermission.cs
- WaitHandleCannotBeOpenedException.cs
- OleDbError.cs
- ResourceProviderFactory.cs
- Lasso.cs
- MarkupCompilePass2.cs
- InsufficientMemoryException.cs
- DurationConverter.cs
- ThreadExceptionEvent.cs
- TextTreeUndoUnit.cs
- GroupBoxAutomationPeer.cs
- MimeMultiPart.cs
- ClientSideQueueItem.cs
- ContractMapping.cs
- ProfilePropertyNameValidator.cs
- MetadataPropertyCollection.cs
- ActivityValidator.cs
- ResXResourceReader.cs
- DeclarationUpdate.cs
- PreProcessInputEventArgs.cs
- ProxyWebPartManager.cs
- StructuralObject.cs
- AutomationElementCollection.cs
- KeyInstance.cs
- EventLogWatcher.cs
- SqlWebEventProvider.cs
- StaticDataManager.cs
- OracleNumber.cs
- SocketInformation.cs
- SessionStateItemCollection.cs
- TextRunCacheImp.cs
- CodeTypeDeclarationCollection.cs
- ZoneMembershipCondition.cs
- TemplateFactory.cs
- MainMenu.cs
- FilteredAttributeCollection.cs
- DbConnectionOptions.cs
- TabPage.cs
- listitem.cs
- HttpsTransportElement.cs
- DependencyObjectProvider.cs
- WebMessageFormatHelper.cs
- AuthenticationModuleElement.cs
- WebContentFormatHelper.cs
- SettingsBase.cs
- Pair.cs
- ConfigurationStrings.cs
- HashCodeCombiner.cs
- FigureParagraph.cs
- DefaultPrintController.cs
- ScriptingScriptResourceHandlerSection.cs
- CodeGenerationManager.cs
- TrackingServices.cs
- DeviceContexts.cs
- CodeArgumentReferenceExpression.cs
- GlyphInfoList.cs
- AncestorChangedEventArgs.cs
- WindowInteropHelper.cs
- TaskCanceledException.cs
- PointAnimationUsingPath.cs
- Compiler.cs
- BindingCompleteEventArgs.cs
- DrawingVisualDrawingContext.cs
- DataSet.cs
- RequestSecurityTokenResponse.cs
- UnsafeNativeMethods.cs
- CookielessHelper.cs
- DeviceContext.cs
- safex509handles.cs
- RuntimeIdentifierPropertyAttribute.cs
- ChannelFactoryRefCache.cs
- SourceSwitch.cs
- SqlAliasesReferenced.cs
- SignatureHelper.cs
- SystemInformation.cs
- TransformationRules.cs
- SqlBulkCopy.cs
- ProgressBarBrushConverter.cs
- XsltFunctions.cs
- CalendarDateChangedEventArgs.cs
- ActivityTrace.cs
- BrowserDefinition.cs
- XmlMtomWriter.cs
- WebConfigurationHost.cs
- MaterializeFromAtom.cs
- ServerType.cs
- HtmlInputControl.cs
- CompareValidator.cs
- SelectedCellsCollection.cs
- SetStateDesigner.cs
- XmlSchemaComplexType.cs
- LicenseProviderAttribute.cs
- PathStreamGeometryContext.cs
- PersonalizationProviderCollection.cs
- SQLBinaryStorage.cs
- FrameworkElementAutomationPeer.cs
- MessageSmuggler.cs
- MultiView.cs