Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PolyBezierSegment.cs
- RecognizeCompletedEventArgs.cs
- XPathNodeIterator.cs
- ImageSourceValueSerializer.cs
- DataSourceXmlSerializationAttribute.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- RemotingException.cs
- GridViewRowEventArgs.cs
- MsmqIntegrationOutputChannel.cs
- _ProxyChain.cs
- Error.cs
- SmiGettersStream.cs
- UnsafeCollabNativeMethods.cs
- EntityUtil.cs
- RecommendedAsConfigurableAttribute.cs
- SeekStoryboard.cs
- PropertyExpression.cs
- WSSecurityPolicy.cs
- Point4D.cs
- DNS.cs
- CompositeControl.cs
- RayHitTestParameters.cs
- WizardStepBase.cs
- CharacterBuffer.cs
- OutputCacheProfile.cs
- VScrollBar.cs
- FamilyCollection.cs
- ComplexType.cs
- WebPartMinimizeVerb.cs
- WpfWebRequestHelper.cs
- StylusPoint.cs
- TargetFrameworkUtil.cs
- CollectionBase.cs
- SettingsSavedEventArgs.cs
- ReachSerializableProperties.cs
- HttpRequestCacheValidator.cs
- CollectionChangeEventArgs.cs
- FactorySettingsElement.cs
- PageSettings.cs
- DefaultAsyncDataDispatcher.cs
- CodeNamespaceImportCollection.cs
- TagPrefixAttribute.cs
- Span.cs
- HtmlInputSubmit.cs
- TemplateLookupAction.cs
- SlotInfo.cs
- Parser.cs
- XamlWriter.cs
- Tokenizer.cs
- Propagator.ExtentPlaceholderCreator.cs
- CfgParser.cs
- ChooseAction.cs
- UnsafeNativeMethods.cs
- LineSegment.cs
- ExpressionBuilderContext.cs
- ObjectCloneHelper.cs
- SingleAnimation.cs
- VisualStyleElement.cs
- SortDescription.cs
- HttpContextServiceHost.cs
- MemoryFailPoint.cs
- FormCollection.cs
- SafeLocalMemHandle.cs
- DataTemplateKey.cs
- WebPartHeaderCloseVerb.cs
- GeneralTransform3D.cs
- WebPartCancelEventArgs.cs
- DataGridViewColumnEventArgs.cs
- CryptoApi.cs
- XmlElementCollection.cs
- DragDeltaEventArgs.cs
- WindowsProgressbar.cs
- SQLDecimal.cs
- PageCatalogPart.cs
- ColumnCollection.cs
- DbConnectionPoolCounters.cs
- HttpHeaderCollection.cs
- ButtonRenderer.cs
- SoapWriter.cs
- IfAction.cs
- EntityProxyTypeInfo.cs
- GiveFeedbackEvent.cs
- ServiceModelConfiguration.cs
- Match.cs
- BasicViewGenerator.cs
- BooleanToVisibilityConverter.cs
- InnerItemCollectionView.cs
- IconConverter.cs
- RightNameExpirationInfoPair.cs
- UInt32Converter.cs
- InternalControlCollection.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- FieldBuilder.cs
- ResXResourceReader.cs
- XmlSubtreeReader.cs
- Int16Animation.cs
- BindingManagerDataErrorEventArgs.cs
- COM2IProvidePropertyBuilderHandler.cs
- MetadataCollection.cs
- Automation.cs