Code:
/ DotNET / DotNET / 8.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
- DecodeHelper.cs
- CodeAccessPermission.cs
- LinqDataSourceDeleteEventArgs.cs
- ValidatorCollection.cs
- ImageUrlEditor.cs
- ZipIORawDataFileBlock.cs
- Latin1Encoding.cs
- GenerateTemporaryTargetAssembly.cs
- WorkflowRuntimeServiceElement.cs
- NativeMethods.cs
- WebMessageBodyStyleHelper.cs
- ComponentEditorForm.cs
- ByteArrayHelperWithString.cs
- ToolStripOverflowButton.cs
- FormatterConverter.cs
- UniqueEventHelper.cs
- ProfilePropertyMetadata.cs
- ValidateNames.cs
- BCLDebug.cs
- ThemeDictionaryExtension.cs
- Collection.cs
- RequestQueue.cs
- ImageIndexConverter.cs
- CurrencyWrapper.cs
- HtmlInputImage.cs
- StateBag.cs
- AutoCompleteStringCollection.cs
- MailAddressCollection.cs
- UnsafeNativeMethods.cs
- ChineseLunisolarCalendar.cs
- DurationConverter.cs
- GenericUriParser.cs
- DefaultParameterValueAttribute.cs
- ProcessInfo.cs
- UseLicense.cs
- ObjectManager.cs
- MatrixAnimationUsingPath.cs
- PageHandlerFactory.cs
- MessageBox.cs
- RelationshipDetailsRow.cs
- XamlGridLengthSerializer.cs
- EntityParameterCollection.cs
- HyperLinkStyle.cs
- DataGridViewTextBoxCell.cs
- CngKeyCreationParameters.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- EditorAttribute.cs
- WebServiceHandler.cs
- GeneralTransform2DTo3D.cs
- PerSessionInstanceContextProvider.cs
- FamilyTypefaceCollection.cs
- ContainerVisual.cs
- TimelineClockCollection.cs
- ControlCollection.cs
- SmtpLoginAuthenticationModule.cs
- Pointer.cs
- Collection.cs
- PropertyBuilder.cs
- LayoutEvent.cs
- StylusPointPropertyUnit.cs
- SiteMapPath.cs
- PropertyInformation.cs
- QuaternionKeyFrameCollection.cs
- ServerValidateEventArgs.cs
- validationstate.cs
- ToRequest.cs
- AsyncCodeActivityContext.cs
- DataGridTable.cs
- DesignerUtils.cs
- Transactions.cs
- SafeFileMapViewHandle.cs
- DnsEndpointIdentity.cs
- MonitorWrapper.cs
- InvalidProgramException.cs
- Vertex.cs
- TimeZone.cs
- DateTimeOffsetAdapter.cs
- ScrollableControl.cs
- XpsFixedPageReaderWriter.cs
- DBCommand.cs
- FormatterServices.cs
- TCPClient.cs
- TrustLevelCollection.cs
- SHA256.cs
- ModelPerspective.cs
- EnlistmentState.cs
- ToolStripLocationCancelEventArgs.cs
- CapabilitiesPattern.cs
- QueryMatcher.cs
- DBSchemaTable.cs
- BorderGapMaskConverter.cs
- TraceListeners.cs
- ControlCollection.cs
- XPathMessageContext.cs
- SingleAnimation.cs
- PreviewKeyDownEventArgs.cs
- FontDialog.cs
- WebPartTracker.cs
- CryptoStream.cs
- SqlWorkflowPersistenceService.cs