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
- BitVector32.cs
- DesignTimeParseData.cs
- TryCatch.cs
- EntityClassGenerator.cs
- StorageMappingItemCollection.cs
- BitmapImage.cs
- ObjectDataSourceDisposingEventArgs.cs
- Version.cs
- DataBinding.cs
- Calendar.cs
- ResourceReader.cs
- ZipIORawDataFileBlock.cs
- UIElement.cs
- Queue.cs
- Int32KeyFrameCollection.cs
- SkewTransform.cs
- CodeAttributeArgument.cs
- PropertyOrder.cs
- AttachedPropertyMethodSelector.cs
- InternalPermissions.cs
- BoolExpr.cs
- CryptographicAttribute.cs
- BufferedWebEventProvider.cs
- brushes.cs
- SqlColumnizer.cs
- FixedSOMTextRun.cs
- IIS7UserPrincipal.cs
- CollectionTypeElement.cs
- XomlCompilerResults.cs
- Group.cs
- JournalNavigationScope.cs
- xmlglyphRunInfo.cs
- ScrollEventArgs.cs
- Pool.cs
- Menu.cs
- ManagedIStream.cs
- MetadataItemCollectionFactory.cs
- XamlTreeBuilderBamlRecordWriter.cs
- KerberosSecurityTokenProvider.cs
- UriTemplatePathPartiallyEquivalentSet.cs
- Privilege.cs
- ToggleButton.cs
- ModuleBuilderData.cs
- MissingMethodException.cs
- HwndAppCommandInputProvider.cs
- RectangleGeometry.cs
- MessageRpc.cs
- RuntimeIdentifierPropertyAttribute.cs
- FileReservationCollection.cs
- MimeMapping.cs
- EventProviderBase.cs
- AssociationSetEnd.cs
- SQLRoleProvider.cs
- ValidationHelper.cs
- CopyAction.cs
- ConfigurationPropertyAttribute.cs
- UriTemplateLiteralQueryValue.cs
- DataGridTableCollection.cs
- CacheVirtualItemsEvent.cs
- HtmlString.cs
- XmlSignatureProperties.cs
- RegistrationServices.cs
- mediapermission.cs
- BrushConverter.cs
- DateTimeStorage.cs
- CultureTableRecord.cs
- ReflectEventDescriptor.cs
- NativeRecognizer.cs
- ActivationArguments.cs
- XPathParser.cs
- EventManager.cs
- DataObjectFieldAttribute.cs
- RegistryExceptionHelper.cs
- ClientProxyGenerator.cs
- FieldNameLookup.cs
- StylusPointProperties.cs
- DispatchWrapper.cs
- OleAutBinder.cs
- MultiSelectRootGridEntry.cs
- xdrvalidator.cs
- ShapingWorkspace.cs
- LineProperties.cs
- ComponentFactoryHelpers.cs
- TypeResolvingOptions.cs
- StatusBar.cs
- DBAsyncResult.cs
- UnsafeNativeMethodsPenimc.cs
- ChangesetResponse.cs
- OdbcConnectionString.cs
- AccessViolationException.cs
- ActiveXHelper.cs
- HierarchicalDataSourceControl.cs
- MultiBinding.cs
- RepeatButton.cs
- ImplicitInputBrush.cs
- Imaging.cs
- PeerResolverMode.cs
- InternalSafeNativeMethods.cs
- QilReference.cs
- SrgsElementFactoryCompiler.cs