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
- invalidudtexception.cs
- TextChange.cs
- IdentityReference.cs
- ToolStripPanelCell.cs
- SwitchAttribute.cs
- UrlMappingsSection.cs
- EventLogPermission.cs
- Block.cs
- ConfigXmlDocument.cs
- ShaderEffect.cs
- RuntimeCompatibilityAttribute.cs
- SoapObjectReader.cs
- CatchBlock.cs
- ErrorTableItemStyle.cs
- DynamicResourceExtensionConverter.cs
- WebPartConnectionCollection.cs
- SiteMapNodeCollection.cs
- FixedTextView.cs
- StorageSetMapping.cs
- AxWrapperGen.cs
- ReturnEventArgs.cs
- GridItemPatternIdentifiers.cs
- DesignerRegionMouseEventArgs.cs
- WebPartsPersonalization.cs
- Frame.cs
- NamespaceMapping.cs
- _ContextAwareResult.cs
- panel.cs
- HyperLink.cs
- VariableQuery.cs
- CompositeFontParser.cs
- NamespaceList.cs
- EntitySetDataBindingList.cs
- GifBitmapDecoder.cs
- MenuItemCollectionEditor.cs
- SchemaElementDecl.cs
- RepeaterItemEventArgs.cs
- SqlRowUpdatedEvent.cs
- ViewLoader.cs
- SafeEventLogWriteHandle.cs
- XmlDomTextWriter.cs
- DesignerTransaction.cs
- XmlSubtreeReader.cs
- QueryExpr.cs
- HtmlString.cs
- CompiledAction.cs
- HttpTransportBindingElement.cs
- ContentDesigner.cs
- ClockController.cs
- ExceptionValidationRule.cs
- SynthesizerStateChangedEventArgs.cs
- IdentitySection.cs
- ProvideValueServiceProvider.cs
- Misc.cs
- EntityTransaction.cs
- DuplicateDetector.cs
- CaseStatementSlot.cs
- CommonXSendMessage.cs
- DES.cs
- CompareInfo.cs
- QueryOutputWriter.cs
- IsolatedStorageException.cs
- Permission.cs
- QueryOptionExpression.cs
- BitVec.cs
- SafeFileMappingHandle.cs
- OuterGlowBitmapEffect.cs
- BCryptHashAlgorithm.cs
- IntegerCollectionEditor.cs
- DataTableExtensions.cs
- InstalledFontCollection.cs
- QueryActivatableWorkflowsCommand.cs
- ContextMarshalException.cs
- AssertFilter.cs
- HttpWriter.cs
- SdlChannelSink.cs
- SourceSwitch.cs
- RepeaterDesigner.cs
- DrawingContext.cs
- BindMarkupExtensionSerializer.cs
- SpecialFolderEnumConverter.cs
- SqlLiftIndependentRowExpressions.cs
- IssuedTokenClientBehaviorsElementCollection.cs
- Configuration.cs
- XsdDuration.cs
- ParameterCollection.cs
- DefaultBinder.cs
- GuidelineSet.cs
- HeaderedContentControl.cs
- NavigationFailedEventArgs.cs
- GenericRootAutomationPeer.cs
- MbpInfo.cs
- RawAppCommandInputReport.cs
- SoapWriter.cs
- NullableFloatAverageAggregationOperator.cs
- GridViewRowPresenter.cs
- QueryExpression.cs
- VirtualPath.cs
- DataGridSortCommandEventArgs.cs
- Closure.cs