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
- ToolboxComponentsCreatedEventArgs.cs
- ErrorStyle.cs
- TextFormatter.cs
- ViewStateModeByIdAttribute.cs
- DES.cs
- Pointer.cs
- TraversalRequest.cs
- WSDualHttpBindingElement.cs
- HelpInfo.cs
- TextViewBase.cs
- DataTableReaderListener.cs
- XmlSchemaChoice.cs
- GroupBox.cs
- TextClipboardData.cs
- sortedlist.cs
- GridProviderWrapper.cs
- ListViewContainer.cs
- WebPartHeaderCloseVerb.cs
- StringResourceManager.cs
- CompositeScriptReferenceEventArgs.cs
- Geometry.cs
- SeverityFilter.cs
- MenuItemStyleCollection.cs
- UseLicense.cs
- ExitEventArgs.cs
- QilExpression.cs
- ErrorWebPart.cs
- ProcessInfo.cs
- CodeDelegateInvokeExpression.cs
- SocketAddress.cs
- SiteMap.cs
- XPathScanner.cs
- WebBrowserBase.cs
- NullableConverter.cs
- ItemContainerGenerator.cs
- Type.cs
- PostBackTrigger.cs
- OptimizerPatterns.cs
- SoapSchemaExporter.cs
- FrameworkElementFactory.cs
- ActivityBuilder.cs
- ExtensibleClassFactory.cs
- ImageField.cs
- ProxyManager.cs
- PropertyToken.cs
- FixedDocumentPaginator.cs
- DbExpressionVisitor.cs
- DiscoveryClientChannelFactory.cs
- HtmlDocument.cs
- SQlBooleanStorage.cs
- StreamWithDictionary.cs
- Msec.cs
- CodeExporter.cs
- DataGridAutoGeneratingColumnEventArgs.cs
- AsyncOperation.cs
- LinqDataSourceView.cs
- SqlEnums.cs
- SoapTypeAttribute.cs
- ListViewItemMouseHoverEvent.cs
- ToolStripItemRenderEventArgs.cs
- DataSourceIDConverter.cs
- Screen.cs
- InstanceDescriptor.cs
- RSATokenProvider.cs
- TraceHandlerErrorFormatter.cs
- wmiprovider.cs
- QuestionEventArgs.cs
- EncoderExceptionFallback.cs
- ExpressionBuilderContext.cs
- TextServicesDisplayAttributePropertyRanges.cs
- InfoCard.cs
- ListDictionaryInternal.cs
- DbConnectionPoolCounters.cs
- IncrementalCompileAnalyzer.cs
- Soap12ProtocolImporter.cs
- __Error.cs
- FileStream.cs
- ViewGenResults.cs
- GridErrorDlg.cs
- ToolStripButton.cs
- WebWorkflowRole.cs
- CompilerTypeWithParams.cs
- UnionCodeGroup.cs
- securitymgrsite.cs
- GraphicsContainer.cs
- DataShape.cs
- DmlSqlGenerator.cs
- InvalidOleVariantTypeException.cs
- RoleManagerModule.cs
- UIElementHelper.cs
- WindowsSolidBrush.cs
- WebConfigurationFileMap.cs
- Base64Encoding.cs
- ListManagerBindingsCollection.cs
- QilFactory.cs
- XmlSerializationWriter.cs
- SessionStateUtil.cs
- ErrorFormatter.cs
- _TimerThread.cs
- Stopwatch.cs