Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / 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 : benwest - 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. //---------------------------------------------------------------------------- // // File: PropertyRecord.cs // // Description: DependencyProperty/value pair struct used by TextContainer undo. // // History: // 03/03/2004 : benwest - 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
- BamlLocalizer.cs
- DocumentCollection.cs
- PasswordPropertyTextAttribute.cs
- ExpandSegment.cs
- HttpCapabilitiesBase.cs
- AssemblyResourceLoader.cs
- InvalidOleVariantTypeException.cs
- XmlJsonReader.cs
- ItemList.cs
- BrowserCapabilitiesFactoryBase.cs
- ServiceOperationParameter.cs
- Keyboard.cs
- GlobalAllocSafeHandle.cs
- BufferedWebEventProvider.cs
- ListViewDataItem.cs
- Base64Encoder.cs
- SqlExpressionNullability.cs
- StylusCaptureWithinProperty.cs
- BindingExpression.cs
- WeakEventManager.cs
- ServerType.cs
- HttpRawResponse.cs
- HtmlInputText.cs
- SoapSchemaExporter.cs
- HtmlInputReset.cs
- ExceptionTrace.cs
- DBNull.cs
- KeyValueSerializer.cs
- mactripleDES.cs
- ThemeableAttribute.cs
- DataGridViewImageColumn.cs
- ServiceContractViewControl.Designer.cs
- WebPartDisplayModeCancelEventArgs.cs
- PermissionToken.cs
- RealizationDrawingContextWalker.cs
- WebPartTransformer.cs
- ReadOnlyDataSource.cs
- ParserStreamGeometryContext.cs
- ImageClickEventArgs.cs
- ImageBrush.cs
- XsdDataContractExporter.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- CodeBlockBuilder.cs
- FileCodeGroup.cs
- FloaterParagraph.cs
- WebOperationContext.cs
- OraclePermissionAttribute.cs
- MgmtConfigurationRecord.cs
- TypeContext.cs
- StreamInfo.cs
- OletxTransactionHeader.cs
- BuildManagerHost.cs
- RuleAttributes.cs
- XmlLinkedNode.cs
- EventDrivenDesigner.cs
- EventToken.cs
- SessionIDManager.cs
- LayoutUtils.cs
- CodeFieldReferenceExpression.cs
- DataPager.cs
- AggregateNode.cs
- ControlCachePolicy.cs
- CursorConverter.cs
- SplitterEvent.cs
- FrameworkContentElementAutomationPeer.cs
- TabControlEvent.cs
- HwndMouseInputProvider.cs
- CookieParameter.cs
- ResourceReader.cs
- FixedPageAutomationPeer.cs
- RightsManagementInformation.cs
- DataServiceQueryException.cs
- tooltip.cs
- UidManager.cs
- SerTrace.cs
- DataObjectPastingEventArgs.cs
- WebPartAuthorizationEventArgs.cs
- ActivityValidator.cs
- RegexTree.cs
- AuthStoreRoleProvider.cs
- LeftCellWrapper.cs
- HandleCollector.cs
- ObjectConverter.cs
- TCPClient.cs
- SRDisplayNameAttribute.cs
- IPipelineRuntime.cs
- SiteMapPath.cs
- StringPropertyBuilder.cs
- XmlHierarchicalDataSourceView.cs
- IOThreadTimer.cs
- BrowserCapabilitiesFactory.cs
- XmlSchemaSequence.cs
- GraphicsPath.cs
- RepeatBehavior.cs
- CodeThrowExceptionStatement.cs
- TransformGroup.cs
- QueuePathDialog.cs
- DbProviderFactory.cs
- NotCondition.cs
- ConnectionPoint.cs