Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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
- InternalTransaction.cs
- MailWebEventProvider.cs
- ByteArrayHelperWithString.cs
- invalidudtexception.cs
- RectAnimation.cs
- InvalidateEvent.cs
- InputScopeManager.cs
- QueryCacheKey.cs
- EventlogProvider.cs
- XmlSchemaSimpleContent.cs
- SqlTriggerContext.cs
- SettingsPropertyValueCollection.cs
- DataError.cs
- StackSpiller.Temps.cs
- PeerName.cs
- SpeakCompletedEventArgs.cs
- AppSettingsSection.cs
- NativeMethods.cs
- WebPartDesigner.cs
- EventHandlersStore.cs
- NotFiniteNumberException.cs
- ModelItem.cs
- HttpWebResponse.cs
- ProfileService.cs
- XamlSerializerUtil.cs
- JournalNavigationScope.cs
- CodeExpressionRuleDeclaration.cs
- SponsorHelper.cs
- WbmpConverter.cs
- NativeMethods.cs
- ImageProxy.cs
- Paragraph.cs
- DataGridViewLinkCell.cs
- DeclaredTypeElement.cs
- SubpageParaClient.cs
- Buffer.cs
- HtmlWindowCollection.cs
- DataGridViewBand.cs
- InternalRelationshipCollection.cs
- Visual3DCollection.cs
- IntellisenseTextBox.designer.cs
- Operators.cs
- OpenCollectionAsyncResult.cs
- SecureConversationServiceCredential.cs
- PointAnimation.cs
- FilteredSchemaElementLookUpTable.cs
- Schema.cs
- Application.cs
- OverrideMode.cs
- CqlErrorHelper.cs
- XhtmlBasicLinkAdapter.cs
- CompositeDispatchFormatter.cs
- Int32AnimationBase.cs
- BindingSource.cs
- AppModelKnownContentFactory.cs
- DBPropSet.cs
- EntityKeyElement.cs
- FontFamily.cs
- AstTree.cs
- PathSegment.cs
- StyleXamlParser.cs
- XmlArrayItemAttribute.cs
- EndpointDiscoveryMetadataCD1.cs
- DecimalConverter.cs
- LiteralControl.cs
- SiteMapHierarchicalDataSourceView.cs
- XmlHierarchyData.cs
- CodeBinaryOperatorExpression.cs
- Utilities.cs
- DataServiceKeyAttribute.cs
- WSFederationHttpSecurity.cs
- FamilyMapCollection.cs
- TranslateTransform3D.cs
- pingexception.cs
- NavigationWindowAutomationPeer.cs
- BitmapEffectGroup.cs
- ContractDescription.cs
- DbDataSourceEnumerator.cs
- ModelUIElement3D.cs
- HttpRequestCacheValidator.cs
- WeakReferenceEnumerator.cs
- MiniParameterInfo.cs
- WorkflowMarkupSerializationProvider.cs
- BoundingRectTracker.cs
- SafeNativeMethodsOther.cs
- NetworkInformationException.cs
- ResourceKey.cs
- ElementMarkupObject.cs
- EventManager.cs
- HttpRawResponse.cs
- XmlSchemaObjectCollection.cs
- PrePrepareMethodAttribute.cs
- HtmlInputRadioButton.cs
- Animatable.cs
- TrustManagerPromptUI.cs
- MetadataPropertyCollection.cs
- Button.cs
- ApplicationSecurityInfo.cs
- CustomTrackingRecord.cs
- FilteredDataSetHelper.cs