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
- ListItemParagraph.cs
- CmsInterop.cs
- LinqDataSourceHelper.cs
- MasterPageParser.cs
- CoTaskMemHandle.cs
- TypedElement.cs
- DataGridHeadersVisibilityToVisibilityConverter.cs
- TitleStyle.cs
- PolicyException.cs
- FunctionDetailsReader.cs
- SslStream.cs
- ResourceProviderFactory.cs
- Path.cs
- RuntimeIdentifierPropertyAttribute.cs
- QueryResponse.cs
- CellConstantDomain.cs
- Context.cs
- BatchParser.cs
- WebBaseEventKeyComparer.cs
- ExpressionEditorAttribute.cs
- DebugController.cs
- ToolZone.cs
- TypeDescriptor.cs
- uribuilder.cs
- SQLByte.cs
- XmlBoundElement.cs
- XmlTextEncoder.cs
- Int32CAMarshaler.cs
- ActivityDelegate.cs
- SqlXml.cs
- FilterQuery.cs
- DrawingAttributesDefaultValueFactory.cs
- PrintDialogDesigner.cs
- CqlIdentifiers.cs
- RuntimeConfigLKG.cs
- WebReferenceOptions.cs
- QualifiedCellIdBoolean.cs
- InfoCardUIAgent.cs
- Win32.cs
- HttpRequestCacheValidator.cs
- ScriptingWebServicesSectionGroup.cs
- AutomationElementIdentifiers.cs
- BitmapDecoder.cs
- ReadOnlyHierarchicalDataSource.cs
- ScriptRef.cs
- DropShadowBitmapEffect.cs
- _HeaderInfoTable.cs
- HttpServerChannel.cs
- DtdParser.cs
- ModuleConfigurationInfo.cs
- RequestCachingSection.cs
- EntityUtil.cs
- LinqDataSourceStatusEventArgs.cs
- ListViewContainer.cs
- IndexerNameAttribute.cs
- ResolveNameEventArgs.cs
- Constraint.cs
- COMException.cs
- TypeUtils.cs
- TextRenderer.cs
- TrustManager.cs
- CustomAttributeBuilder.cs
- KeyValueInternalCollection.cs
- MetadataSerializer.cs
- UserPreferenceChangingEventArgs.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- DispatchOperation.cs
- BrowserCapabilitiesFactory.cs
- PolygonHotSpot.cs
- ActionFrame.cs
- SchemaCollectionPreprocessor.cs
- CfgParser.cs
- Query.cs
- InputScopeNameConverter.cs
- BuildManagerHost.cs
- VolatileEnlistmentState.cs
- ProvideValueServiceProvider.cs
- HashRepartitionStream.cs
- TextViewBase.cs
- newinstructionaction.cs
- FilterableAttribute.cs
- XmlWrappingReader.cs
- DataListItemCollection.cs
- DbXmlEnabledProviderManifest.cs
- XmlReturnWriter.cs
- RawStylusSystemGestureInputReport.cs
- TypeDescriptionProviderAttribute.cs
- DocumentCollection.cs
- CanExecuteRoutedEventArgs.cs
- ValueType.cs
- BitmapCodecInfo.cs
- SharedPerformanceCounter.cs
- DataGridViewCellStyleChangedEventArgs.cs
- SiteOfOriginPart.cs
- ExecutorLocksHeldException.cs
- DataControlPagerLinkButton.cs
- NamespaceList.cs
- KnownTypes.cs
- TextRenderer.cs
- QueryCacheKey.cs