Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- SoapCommonClasses.cs
- SHA512.cs
- SqlFormatter.cs
- ExpressionBuilderCollection.cs
- ObjectStorage.cs
- DataRowExtensions.cs
- GridViewCancelEditEventArgs.cs
- DefaultValueConverter.cs
- BindingGroup.cs
- IntegerCollectionEditor.cs
- DataGridViewCellFormattingEventArgs.cs
- FlowDocumentPageViewerAutomationPeer.cs
- FreezableOperations.cs
- CompressedStack.cs
- NativeMethods.cs
- RawStylusInputReport.cs
- ButtonPopupAdapter.cs
- EntityDataSourceEntitySetNameItem.cs
- EntityUtil.cs
- XmlFormatReaderGenerator.cs
- SqlProfileProvider.cs
- OracleParameterBinding.cs
- XmlWrappingReader.cs
- DbReferenceCollection.cs
- PixelShader.cs
- WinEventTracker.cs
- PageClientProxyGenerator.cs
- ExplicitDiscriminatorMap.cs
- Image.cs
- HtmlMeta.cs
- VoiceChangeEventArgs.cs
- GridEntry.cs
- DefaultAsyncDataDispatcher.cs
- ContextQuery.cs
- MdiWindowListItemConverter.cs
- log.cs
- XpsSerializerFactory.cs
- XmlSchemaSimpleTypeRestriction.cs
- DataGridRowEventArgs.cs
- SQLRoleProvider.cs
- TableLayoutSettings.cs
- WrappedReader.cs
- PrimitiveXmlSerializers.cs
- Error.cs
- LoginView.cs
- ValidationSummary.cs
- XPathNodeHelper.cs
- EditorPartChrome.cs
- StorageRoot.cs
- _OSSOCK.cs
- Visitors.cs
- SolidColorBrush.cs
- ThreadStateException.cs
- ChangePassword.cs
- EmissiveMaterial.cs
- VideoDrawing.cs
- TreeNodeStyleCollection.cs
- SurrogateEncoder.cs
- HttpHandlerAction.cs
- MethodBody.cs
- HierarchicalDataBoundControl.cs
- Label.cs
- Base64Stream.cs
- InputScopeAttribute.cs
- SupportingTokenSecurityTokenResolver.cs
- ServerValidateEventArgs.cs
- SecurityTokenException.cs
- HybridDictionary.cs
- DeferredReference.cs
- SelectiveScrollingGrid.cs
- Canvas.cs
- SessionPageStatePersister.cs
- ClipboardProcessor.cs
- ExpressionLexer.cs
- AssemblyInfo.cs
- BrowserDefinitionCollection.cs
- ContentIterators.cs
- ParallelDesigner.xaml.cs
- OraclePermission.cs
- parserscommon.cs
- Win32KeyboardDevice.cs
- RightsManagementEncryptionTransform.cs
- StringInfo.cs
- TextEffect.cs
- RemoteWebConfigurationHost.cs
- ConfigurationPropertyCollection.cs
- CustomWebEventKey.cs
- ListViewItem.cs
- CollectionContainer.cs
- LeaseManager.cs
- AuthorizationSection.cs
- ArrayElementGridEntry.cs
- MbpInfo.cs
- XsdDuration.cs
- AsymmetricKeyExchangeFormatter.cs
- PenCursorManager.cs
- FormConverter.cs
- unsafenativemethodsother.cs
- ASCIIEncoding.cs
- ArglessEventHandlerProxy.cs