Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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
- propertytag.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- SqlTrackingQuery.cs
- XmlSchemaIdentityConstraint.cs
- XmlSchemaSequence.cs
- DesignerActionUIService.cs
- Point3DAnimationUsingKeyFrames.cs
- CalendarDay.cs
- ProtocolViolationException.cs
- GridToolTip.cs
- PageFunction.cs
- XMLSchema.cs
- RotateTransform.cs
- DataStorage.cs
- GradientStop.cs
- DataGridLinkButton.cs
- AutoSizeComboBox.cs
- WindowsContainer.cs
- XmlSchemaInfo.cs
- ContentType.cs
- QueryOutputWriter.cs
- MD5CryptoServiceProvider.cs
- XmlAnyElementAttribute.cs
- ConfigurationLocation.cs
- IHttpResponseInternal.cs
- PropertySourceInfo.cs
- WSIdentityFaultException.cs
- TemplateControlCodeDomTreeGenerator.cs
- dbenumerator.cs
- DataSourceDescriptorCollection.cs
- CrossContextChannel.cs
- RunClient.cs
- ConfigXmlCDataSection.cs
- ScriptManagerProxy.cs
- RemoteWebConfigurationHostStream.cs
- PropertyGroupDescription.cs
- ExtendedPropertyInfo.cs
- XmlSchemaObjectTable.cs
- DockProviderWrapper.cs
- ICspAsymmetricAlgorithm.cs
- InlineObject.cs
- DbProviderFactories.cs
- EntityDataReader.cs
- InputBindingCollection.cs
- DataList.cs
- ExpressionEditor.cs
- HttpEncoderUtility.cs
- KeyNotFoundException.cs
- PrintingPermission.cs
- arabicshape.cs
- BitmapEffectInput.cs
- MobileListItem.cs
- QilVisitor.cs
- TypeDescriptor.cs
- ModuleElement.cs
- UserControlCodeDomTreeGenerator.cs
- WindowManager.cs
- DrawingDrawingContext.cs
- RenamedEventArgs.cs
- QilReplaceVisitor.cs
- InitializationEventAttribute.cs
- LinqDataSourceDisposeEventArgs.cs
- ipaddressinformationcollection.cs
- SymbolTable.cs
- HtmlInputReset.cs
- HttpRawResponse.cs
- BaseValidator.cs
- TemplatedMailWebEventProvider.cs
- EdmTypeAttribute.cs
- AssemblyCollection.cs
- StringComparer.cs
- GenerateHelper.cs
- DataServiceEntityAttribute.cs
- OleDbSchemaGuid.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- RegisteredHiddenField.cs
- ValidationEventArgs.cs
- RelationshipDetailsCollection.cs
- RowBinding.cs
- DesignerTextWriter.cs
- ListViewGroupCollectionEditor.cs
- AppSettingsReader.cs
- FileStream.cs
- SafeBuffer.cs
- ObjectSet.cs
- FunctionDescription.cs
- SystemWebExtensionsSectionGroup.cs
- DynamicObjectAccessor.cs
- GradientBrush.cs
- GPPOINTF.cs
- PreservationFileReader.cs
- NestedContainer.cs
- WorkerRequest.cs
- PackageFilter.cs
- DataBoundLiteralControl.cs
- DataGridTablesFactory.cs
- InputLangChangeRequestEvent.cs
- GridViewDeletedEventArgs.cs
- AttributeData.cs
- AsyncWaitHandle.cs