Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Documents / PropertyRecord.cs / 1305600 / 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. //---------------------------------------------------------------------------- // // 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
- RemoteDebugger.cs
- WebPageTraceListener.cs
- XmlNavigatorStack.cs
- DefaultAutoFieldGenerator.cs
- CompModSwitches.cs
- CopyOfAction.cs
- Span.cs
- Container.cs
- COM2ComponentEditor.cs
- Ipv6Element.cs
- ReaderOutput.cs
- CacheForPrimitiveTypes.cs
- TreeWalkHelper.cs
- FillRuleValidation.cs
- BaseConfigurationRecord.cs
- GeneratedView.cs
- XmlBinaryReaderSession.cs
- DurableOperationContext.cs
- SpellerStatusTable.cs
- PkcsMisc.cs
- TextParagraph.cs
- StyleXamlParser.cs
- StylusSystemGestureEventArgs.cs
- unsafeIndexingFilterStream.cs
- ParserContext.cs
- FormViewCommandEventArgs.cs
- StateValidator.cs
- MailHeaderInfo.cs
- OrthographicCamera.cs
- SqlInternalConnection.cs
- GlyphTypeface.cs
- Clock.cs
- HttpPostServerProtocol.cs
- TreeNodeStyleCollection.cs
- RepeaterDataBoundAdapter.cs
- CodeTypeReference.cs
- RequestContextBase.cs
- HtmlButton.cs
- WebConfigurationHost.cs
- ImageInfo.cs
- CodeMethodInvokeExpression.cs
- MD5CryptoServiceProvider.cs
- ButtonPopupAdapter.cs
- CodeCompileUnit.cs
- HttpHandlersSection.cs
- DeclaredTypeValidatorAttribute.cs
- HttpCacheParams.cs
- ToolStripDesignerAvailabilityAttribute.cs
- NavigationPropertyEmitter.cs
- WindowsGraphicsCacheManager.cs
- ListChangedEventArgs.cs
- XmlNodeChangedEventArgs.cs
- Hash.cs
- HelloMessageApril2005.cs
- RSAOAEPKeyExchangeDeformatter.cs
- Highlights.cs
- FixedElement.cs
- SchemaImporterExtension.cs
- UserControl.cs
- _ScatterGatherBuffers.cs
- Simplifier.cs
- DataSourceCache.cs
- Message.cs
- Stack.cs
- MessageQueueConverter.cs
- SoapMessage.cs
- XPathNodeHelper.cs
- Container.cs
- SpecialNameAttribute.cs
- ReferentialConstraint.cs
- Speller.cs
- CounterSample.cs
- MulticastNotSupportedException.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- LineGeometry.cs
- WebRequestModulesSection.cs
- SendActivityEventArgs.cs
- ReflectionUtil.cs
- SqlProviderManifest.cs
- DetailsViewInsertEventArgs.cs
- WebPartDescription.cs
- SqlUnionizer.cs
- ListViewItem.cs
- ListBox.cs
- ScrollItemPattern.cs
- PartialList.cs
- LocalizabilityAttribute.cs
- SizeKeyFrameCollection.cs
- RijndaelManagedTransform.cs
- TypeInitializationException.cs
- DataColumnMappingCollection.cs
- BitVector32.cs
- TypedReference.cs
- WsdlImporterElement.cs
- HtmlTextArea.cs
- HostingEnvironmentSection.cs
- DirectoryLocalQuery.cs
- DoubleAnimationUsingPath.cs
- SingleStorage.cs
- DataGridViewCellConverter.cs