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
- Floater.cs
- ValueConversionAttribute.cs
- NativeObjectSecurity.cs
- WebDescriptionAttribute.cs
- GeneralTransformGroup.cs
- DataBinding.cs
- EntityViewGenerator.cs
- TemplateBaseAction.cs
- TemplateBindingExpressionConverter.cs
- ErrorWebPart.cs
- HttpListener.cs
- ZoneIdentityPermission.cs
- OutputCacheProfile.cs
- AppDomainGrammarProxy.cs
- OleDbConnectionFactory.cs
- SetStateDesigner.cs
- MyContact.cs
- BridgeDataRecord.cs
- DbParameterHelper.cs
- PropertyExpression.cs
- XmlAttributes.cs
- SingleResultAttribute.cs
- XXXInfos.cs
- GrammarBuilderBase.cs
- ServiceDeploymentInfo.cs
- EncryptedKey.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- SqlGatherConsumedAliases.cs
- ConfigXmlElement.cs
- SingleConverter.cs
- CompiledQuery.cs
- Odbc32.cs
- BindingContext.cs
- StretchValidation.cs
- HtmlInputCheckBox.cs
- DiscoveryServiceExtension.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- JsonObjectDataContract.cs
- ToolStripLabel.cs
- LinqDataView.cs
- XmlHierarchicalEnumerable.cs
- HttpRawResponse.cs
- _LocalDataStore.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- BaseTemplateCodeDomTreeGenerator.cs
- TabControlEvent.cs
- FormsAuthenticationConfiguration.cs
- OptimalBreakSession.cs
- AppDomainManager.cs
- webproxy.cs
- UserNamePasswordValidator.cs
- BrowserCapabilitiesFactoryBase.cs
- EncryptedPackage.cs
- LinearKeyFrames.cs
- Validator.cs
- Convert.cs
- DesignerOptionService.cs
- GregorianCalendarHelper.cs
- ActivityInterfaces.cs
- DataGridCommandEventArgs.cs
- Bitmap.cs
- PenContexts.cs
- MapPathBasedVirtualPathProvider.cs
- DropSource.cs
- ModuleBuilder.cs
- GetKeyedHashRequest.cs
- webeventbuffer.cs
- SystemWebCachingSectionGroup.cs
- safelinkcollection.cs
- OutOfMemoryException.cs
- PixelFormats.cs
- brushes.cs
- ModelPropertyDescriptor.cs
- ControlBuilderAttribute.cs
- COM2EnumConverter.cs
- FtpCachePolicyElement.cs
- WorkflowDesignerColors.cs
- LabelDesigner.cs
- AuthenticationService.cs
- Logging.cs
- PrincipalPermission.cs
- Ray3DHitTestResult.cs
- ThousandthOfEmRealDoubles.cs
- EntityDataSourceWrapper.cs
- XmlQualifiedName.cs
- ReliabilityContractAttribute.cs
- Viewport3DAutomationPeer.cs
- BindMarkupExtensionSerializer.cs
- CompensationDesigner.cs
- TextParagraphProperties.cs
- SqlWriter.cs
- TreeSet.cs
- RegexWorker.cs
- RowUpdatingEventArgs.cs
- SessionParameter.cs
- DocumentPageView.cs
- MailMessage.cs
- InternalRelationshipCollection.cs
- TemplateXamlParser.cs
- SerializationSectionGroup.cs