Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AsymmetricSignatureDeformatter.cs
- SendKeys.cs
- CodeLinePragma.cs
- GeneralTransform.cs
- CommandHelpers.cs
- Icon.cs
- XmlWhitespace.cs
- Decimal.cs
- WorkflowTransactionService.cs
- OleDbCommandBuilder.cs
- TitleStyle.cs
- VarRefManager.cs
- BrushConverter.cs
- SoapSchemaExporter.cs
- XmlChoiceIdentifierAttribute.cs
- ProcessHostFactoryHelper.cs
- EditorAttribute.cs
- CatalogZoneDesigner.cs
- TraceSection.cs
- CompilerWrapper.cs
- LOSFormatter.cs
- TrustManager.cs
- IFormattable.cs
- VisualStyleTypesAndProperties.cs
- UpdatePanel.cs
- MailMessageEventArgs.cs
- ObjectCloneHelper.cs
- BatchServiceHost.cs
- EventLogger.cs
- StreamAsIStream.cs
- PathFigure.cs
- NotSupportedException.cs
- ProfileGroupSettingsCollection.cs
- BitmapEffectrendercontext.cs
- HandleCollector.cs
- FormViewModeEventArgs.cs
- XmlSignatureProperties.cs
- DynamicScriptObject.cs
- DispatcherObject.cs
- SoapEnvelopeProcessingElement.cs
- DbReferenceCollection.cs
- ToolStripKeyboardHandlingService.cs
- UniqueIdentifierService.cs
- Misc.cs
- DragEvent.cs
- CompoundFileStorageReference.cs
- RepeaterItem.cs
- ReadOnlyHierarchicalDataSource.cs
- EpmSourceTree.cs
- SQLConvert.cs
- RecognizedAudio.cs
- RootProjectionNode.cs
- ComNativeDescriptor.cs
- XmlBindingWorker.cs
- WebBrowsableAttribute.cs
- TcpAppDomainProtocolHandler.cs
- Queue.cs
- ProcessRequestArgs.cs
- TokenBasedSetEnumerator.cs
- MasterPageCodeDomTreeGenerator.cs
- LogWriteRestartAreaAsyncResult.cs
- RoutedEventValueSerializer.cs
- CommandManager.cs
- SmtpMail.cs
- DesignerToolStripControlHost.cs
- DataService.cs
- XmlSchemaSimpleContent.cs
- TraceHwndHost.cs
- TypedRowGenerator.cs
- ClientBuildManagerCallback.cs
- XmlValidatingReader.cs
- NotifyParentPropertyAttribute.cs
- MultiView.cs
- SQLDecimalStorage.cs
- SafeHandles.cs
- KeyFrames.cs
- TreePrinter.cs
- StartUpEventArgs.cs
- ISAPIWorkerRequest.cs
- TableLayoutPanel.cs
- counter.cs
- UTF8Encoding.cs
- QueryOutputWriter.cs
- StructuredTypeEmitter.cs
- IteratorFilter.cs
- DocumentEventArgs.cs
- KnownBoxes.cs
- TableProviderWrapper.cs
- RSAOAEPKeyExchangeFormatter.cs
- BitConverter.cs
- FixedSOMLineRanges.cs
- PropertyDescriptorCollection.cs
- Errors.cs
- SqlDataSourceSelectingEventArgs.cs
- SelectionListComponentEditor.cs
- LinkedResourceCollection.cs
- CompilerError.cs
- RSAPKCS1SignatureDeformatter.cs
- XslException.cs
- FontConverter.cs