Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / PersistChildrenAttribute.cs / 1 / PersistChildrenAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.ComponentModel; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Class)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class PersistChildrenAttribute : Attribute { ////// Indicates whether /// the contents within a tag representing a custom /// or Web control should be treated as literal text. Web controls supporting complex properties, like /// templates, and /// so on, typically mark themselves as "literals", thereby letting the designer /// infra-structure deal with the persistence of those attributes. ////// public static readonly PersistChildrenAttribute Yes = new PersistChildrenAttribute(true); ///Indicates that the children of a control should be persisted at design-time. /// ////// public static readonly PersistChildrenAttribute No = new PersistChildrenAttribute(false); ///Indicates that the children of a control should not be persisted at design-time. ////// This marks the default child persistence behavior for a control at design time. (equal to Yes.) /// public static readonly PersistChildrenAttribute Default = Yes; private bool _persist; private bool _usesCustomPersistence; ////// public PersistChildrenAttribute(bool persist) { _persist = persist; } public PersistChildrenAttribute(bool persist, bool usesCustomPersistence) : this(persist) { _usesCustomPersistence = usesCustomPersistence; } ////// public bool Persist { get { return _persist; } } ///Indicates whether the children of a control should be persisted at design-time. /// This property is read-only. ////// public bool UsesCustomPersistence { get { // if persist is true, we don't use custom persistence. return !_persist && _usesCustomPersistence; } } ///Indicates whether the control does custom persistence. /// This property is read-only. ////// ///public override int GetHashCode() { return Persist.GetHashCode(); } /// /// ///public override bool Equals(object obj) { if (obj == this) { return true; } if ((obj != null) && (obj is PersistChildrenAttribute)) { return ((PersistChildrenAttribute)obj).Persist == _persist; } return false; } /// /// ///public override bool IsDefaultAttribute() { return this.Equals(Default); } } } // 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
- ResourceContainerWrapper.cs
- ColumnTypeConverter.cs
- HostingEnvironmentWrapper.cs
- MediaPlayer.cs
- DefaultParameterValueAttribute.cs
- RegistryConfigurationProvider.cs
- RuleAction.cs
- IPPacketInformation.cs
- coordinatorfactory.cs
- XhtmlBasicValidationSummaryAdapter.cs
- PersonalizationState.cs
- DependentTransaction.cs
- SspiSafeHandles.cs
- DbDataAdapter.cs
- ADMembershipProvider.cs
- RelationshipNavigation.cs
- XPathDescendantIterator.cs
- TableLayoutStyle.cs
- GenericAuthenticationEventArgs.cs
- WindowsFormsHost.cs
- _TimerThread.cs
- Track.cs
- MissingMemberException.cs
- VirtualPathUtility.cs
- IntellisenseTextBox.designer.cs
- SQLInt64.cs
- SpeakCompletedEventArgs.cs
- LayoutManager.cs
- TypeBuilder.cs
- DependencyPropertyChangedEventArgs.cs
- TextRenderingModeValidation.cs
- _NegoStream.cs
- TagNameToTypeMapper.cs
- PagesChangedEventArgs.cs
- ListViewDataItem.cs
- ProfileGroupSettings.cs
- DiagnosticsConfigurationHandler.cs
- NetWebProxyFinder.cs
- RadialGradientBrush.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- _AcceptOverlappedAsyncResult.cs
- ReflectionServiceProvider.cs
- ItemTypeToolStripMenuItem.cs
- ProcessDesigner.cs
- Effect.cs
- ZoomPercentageConverter.cs
- SelfIssuedTokenFactoryCredential.cs
- VerificationException.cs
- SimpleType.cs
- TextSelection.cs
- ElementNotEnabledException.cs
- SqlUtil.cs
- SslStreamSecurityUpgradeProvider.cs
- TreeNodeConverter.cs
- StyleXamlParser.cs
- XsdBuilder.cs
- ComponentResourceManager.cs
- CodeAttachEventStatement.cs
- ManagementDateTime.cs
- NegotiateStream.cs
- MeasureData.cs
- __Filters.cs
- EventProviderClassic.cs
- WpfKnownTypeInvoker.cs
- DbProviderManifest.cs
- TemplatedWizardStep.cs
- TableLayoutRowStyleCollection.cs
- EntityDataSourceConfigureObjectContext.cs
- AuthorizationRuleCollection.cs
- MultiView.cs
- OleDbFactory.cs
- ProxyOperationRuntime.cs
- IPPacketInformation.cs
- StoreAnnotationsMap.cs
- StorageSetMapping.cs
- FillRuleValidation.cs
- TraceFilter.cs
- RelationshipEndMember.cs
- DataServiceProviderWrapper.cs
- DefinitionBase.cs
- ConfigurationManager.cs
- XmlWriterTraceListener.cs
- SByte.cs
- RemotingConfiguration.cs
- listitem.cs
- SelectionUIService.cs
- CompilerResults.cs
- BasicHttpBindingElement.cs
- StringSorter.cs
- FontNameEditor.cs
- WorkerRequest.cs
- KeyboardDevice.cs
- QilVisitor.cs
- CommonXSendMessage.cs
- ContentValidator.cs
- TableParagraph.cs
- ConditionBrowserDialog.cs
- KnownTypeAttribute.cs
- PageWrapper.cs
- DescendantQuery.cs