Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Documents / PropertyRecord.cs / 1305600 / PropertyRecord.cs
//---------------------------------------------------------------------------- // // File: PropertyRecord.cs // // Description: DependencyProperty/value pair struct used by TextContainer undo. // // History: // 03/03/2004 : [....] - 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 : [....] - 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
- SymbolUsageManager.cs
- RegistrySecurity.cs
- ProxySimple.cs
- QueryContinueDragEvent.cs
- XmlSchemaParticle.cs
- RoleManagerModule.cs
- DeflateStreamAsyncResult.cs
- XmlDocumentFragment.cs
- TypeDescriptorContext.cs
- ExpressionConverter.cs
- WebPartActionVerb.cs
- ProtocolViolationException.cs
- Interlocked.cs
- TraceUtils.cs
- ExtensionQuery.cs
- InputLanguageSource.cs
- Lease.cs
- VarInfo.cs
- NullableBoolConverter.cs
- PhonemeEventArgs.cs
- PackWebRequestFactory.cs
- Ipv6Element.cs
- QilTernary.cs
- IntSecurity.cs
- CharacterHit.cs
- AnnotationComponentManager.cs
- IgnoreFileBuildProvider.cs
- ConsoleTraceListener.cs
- CreateSequenceResponse.cs
- Point4D.cs
- DummyDataSource.cs
- TypeConverterHelper.cs
- SQLByteStorage.cs
- _Events.cs
- TableLayoutColumnStyleCollection.cs
- Function.cs
- RijndaelManaged.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- CategoryList.cs
- ToolboxItemCollection.cs
- CharUnicodeInfo.cs
- CacheSection.cs
- MessageEncoderFactory.cs
- EncoderParameters.cs
- UserPreferenceChangingEventArgs.cs
- Point.cs
- ObjectFullSpanRewriter.cs
- Margins.cs
- DoubleAnimationUsingPath.cs
- CustomAttribute.cs
- PartialTrustHelpers.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- SqlDataSourceWizardForm.cs
- DetailsViewModeEventArgs.cs
- DateTimeOffset.cs
- PageContentCollection.cs
- FontEditor.cs
- Binding.cs
- GuidConverter.cs
- ThreadExceptionEvent.cs
- ProxyFragment.cs
- EnumValAlphaComparer.cs
- _Connection.cs
- mansign.cs
- CodeGenerator.cs
- RemoteWebConfigurationHost.cs
- AssemblyUtil.cs
- _CookieModule.cs
- CodeDirectiveCollection.cs
- SecureUICommand.cs
- OdbcParameterCollection.cs
- UnmanagedMemoryAccessor.cs
- EmptyEnumerable.cs
- XsltSettings.cs
- DefaultHttpHandler.cs
- PieceDirectory.cs
- SqlUserDefinedTypeAttribute.cs
- AttributeQuery.cs
- HtmlInputImage.cs
- FixedSOMPageElement.cs
- LoginDesigner.cs
- DesignSurfaceCollection.cs
- DrawingGroup.cs
- ErrorInfoXmlDocument.cs
- PhonemeConverter.cs
- VirtualizedCellInfoCollection.cs
- BrushMappingModeValidation.cs
- DesignSurfaceEvent.cs
- RNGCryptoServiceProvider.cs
- StorageMappingItemCollection.cs
- FrameworkElement.cs
- PersistenceException.cs
- PageCodeDomTreeGenerator.cs
- NonBatchDirectoryCompiler.cs
- PeerMessageDispatcher.cs
- CompiledQueryCacheEntry.cs
- MessageContractImporter.cs
- EventLogLink.cs
- SafeArrayTypeMismatchException.cs
- XPathNodeList.cs