Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / Serialization / SerializeAbsoluteContext.cs / 1 / SerializeAbsoluteContext.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design.Serialization { using System; using System.CodeDom; ////// /// The ComponentSerializationService supports "absolute" serialization, where instead of just /// serializing values that differ from an object's default values, all values are /// serialized in such a way as to be able to reset values to their defaults for /// objects that may have already been initialized. When a component serialization service /// wishes to indicate this to CodeDomSerializer objects, it will place a /// SerializeAbsoluteContext on the context stack. The member in this context may be null, /// to indicate that all members are serialized, or a member indicating that only a /// specific member is being serialized at this time. /// public sealed class SerializeAbsoluteContext { private MemberDescriptor _member; ////// /// Creeates a new SerializeAbsoluteContext. Member can be null or omitted to indicate this context /// should be used for all members. /// public SerializeAbsoluteContext() { } ////// /// Creeates a new SerializeAbsoluteContext. Member can be null or omitted to indicate this context /// should be used for all members. /// public SerializeAbsoluteContext(MemberDescriptor member) { _member = member; } ////// /// This property returns the member this context is bound to. It may be null to /// indicate the context is bound to all members of an object. /// public MemberDescriptor Member { get { return _member; } } ////// /// Returns true if the given member should be serialized in this context. /// public bool ShouldSerialize(MemberDescriptor member) { return (_member == null || _member == member); } } } // 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
- SqlDependency.cs
- Wizard.cs
- UserPersonalizationStateInfo.cs
- MaskedTextBoxDesignerActionList.cs
- CriticalExceptions.cs
- DisposableCollectionWrapper.cs
- ControlPaint.cs
- UInt16Storage.cs
- ComponentResourceKeyConverter.cs
- ProcessModule.cs
- unsafenativemethodstextservices.cs
- TextParagraph.cs
- StylusButton.cs
- ChtmlFormAdapter.cs
- FieldNameLookup.cs
- LocatorPart.cs
- ViewPort3D.cs
- EntitySetDataBindingList.cs
- XamlPoint3DCollectionSerializer.cs
- OutputCacheProfileCollection.cs
- _SslStream.cs
- DesignConnectionCollection.cs
- CodeGotoStatement.cs
- CryptoKeySecurity.cs
- QuerySelectOp.cs
- ApplicationActivator.cs
- CultureInfoConverter.cs
- VBCodeProvider.cs
- DPAPIProtectedConfigurationProvider.cs
- BulletedListDesigner.cs
- TextTrailingWordEllipsis.cs
- SmiMetaDataProperty.cs
- DesignerUtility.cs
- ISAPIApplicationHost.cs
- DecoderExceptionFallback.cs
- SqlEnums.cs
- ResetableIterator.cs
- ViewGenerator.cs
- WebPermission.cs
- XpsTokenContext.cs
- RuntimeCompatibilityAttribute.cs
- HttpProfileBase.cs
- TabletDeviceInfo.cs
- EventItfInfo.cs
- RemotingAttributes.cs
- LoginUtil.cs
- Underline.cs
- AuthenticationModuleElement.cs
- XslAstAnalyzer.cs
- BeginEvent.cs
- ToolStrip.cs
- HashRepartitionStream.cs
- TabControlEvent.cs
- IImplicitResourceProvider.cs
- TraceHwndHost.cs
- XsdDateTime.cs
- JsonReader.cs
- CompilationPass2TaskInternal.cs
- StackOverflowException.cs
- DataSourceBooleanViewSchemaConverter.cs
- DynamicDataExtensions.cs
- MailAddressCollection.cs
- RepeaterItemCollection.cs
- CompilerParameters.cs
- Attributes.cs
- TrustManager.cs
- ProviderBase.cs
- ObservableDictionary.cs
- OdbcCommandBuilder.cs
- Schema.cs
- TreeViewImageKeyConverter.cs
- CardSpaceShim.cs
- EventLogPermissionAttribute.cs
- BufferedGraphics.cs
- TextEditorSelection.cs
- MarkupWriter.cs
- XMLUtil.cs
- InvokeMemberBinder.cs
- WebHttpBehavior.cs
- NativeMethods.cs
- ObjectQueryState.cs
- Transform.cs
- TCPListener.cs
- ErrorActivity.cs
- HttpCacheVaryByContentEncodings.cs
- DmlSqlGenerator.cs
- Simplifier.cs
- Grant.cs
- EventMappingSettings.cs
- AssemblyFilter.cs
- StrokeRenderer.cs
- AssertFilter.cs
- WindowsAuthenticationEventArgs.cs
- OrderByQueryOptionExpression.cs
- QuadraticBezierSegment.cs
- TextSerializer.cs
- StorageBasedPackageProperties.cs
- ImageInfo.cs
- RuleRef.cs
- SystemTcpStatistics.cs