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
- MessageHeaderDescription.cs
- DrawingAttributeSerializer.cs
- DataGridViewCellMouseEventArgs.cs
- TextBoxLine.cs
- StrokeDescriptor.cs
- NamedObject.cs
- SharedStatics.cs
- TitleStyle.cs
- _SslState.cs
- HtmlTableCell.cs
- OperandQuery.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- TextClipboardData.cs
- AsymmetricAlgorithm.cs
- OutputCacheSection.cs
- UnauthorizedWebPart.cs
- XmlDataProvider.cs
- ComPlusInstanceProvider.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- ListViewItem.cs
- RegexCharClass.cs
- CompiledELinqQueryState.cs
- TagPrefixAttribute.cs
- SocketException.cs
- SiteMapPath.cs
- ClientScriptManager.cs
- ThrowHelper.cs
- ADMembershipUser.cs
- InternalConfigHost.cs
- ProfileGroupSettings.cs
- TCPClient.cs
- ClientSettingsStore.cs
- ValidatedControlConverter.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- OdbcConnectionPoolProviderInfo.cs
- UriSection.cs
- RSAPKCS1KeyExchangeFormatter.cs
- InputReportEventArgs.cs
- AbstractSvcMapFileLoader.cs
- DataGridViewComboBoxEditingControl.cs
- MeasureData.cs
- DataControlButton.cs
- ExecutionPropertyManager.cs
- CodeTypeReferenceCollection.cs
- PropertyPathConverter.cs
- AsnEncodedData.cs
- X509Utils.cs
- MembershipUser.cs
- IriParsingElement.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- GroupItem.cs
- TimelineGroup.cs
- precedingquery.cs
- BreakSafeBase.cs
- MergablePropertyAttribute.cs
- FixUp.cs
- FieldBuilder.cs
- PageSettings.cs
- HttpCachePolicy.cs
- NonVisualControlAttribute.cs
- PointF.cs
- RuntimeVariablesExpression.cs
- PrintDialogException.cs
- DataReceivedEventArgs.cs
- XNameTypeConverter.cs
- CurrencyWrapper.cs
- linebase.cs
- TTSEvent.cs
- TypographyProperties.cs
- ExtendedProtectionPolicy.cs
- DataGridViewRowsRemovedEventArgs.cs
- EncryptedPackage.cs
- FlowNode.cs
- NameTable.cs
- LassoSelectionBehavior.cs
- ForceCopyBuildProvider.cs
- CollaborationHelperFunctions.cs
- ReverseQueryOperator.cs
- ReachIDocumentPaginatorSerializer.cs
- LogLogRecordHeader.cs
- AggregationMinMaxHelpers.cs
- CssStyleCollection.cs
- ValueQuery.cs
- Constants.cs
- ActivityDesignerResources.cs
- ICspAsymmetricAlgorithm.cs
- NameSpaceEvent.cs
- SamlSecurityToken.cs
- EnumerableRowCollectionExtensions.cs
- SmiConnection.cs
- ButtonBase.cs
- AnnotationStore.cs
- HttpApplicationStateBase.cs
- TabControlCancelEvent.cs
- TextSimpleMarkerProperties.cs
- SByteConverter.cs
- Group.cs
- SerializationInfo.cs
- ScopeCompiler.cs
- EventDescriptor.cs