Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MasterPageBuildProvider.cs
- DataGridTableCollection.cs
- ServiceOperationWrapper.cs
- CompiledQueryCacheKey.cs
- CodeStatement.cs
- ValueTable.cs
- LinqDataSourceValidationException.cs
- Root.cs
- WebServiceData.cs
- IssuedTokenClientBehaviorsElementCollection.cs
- DirectionalLight.cs
- ImmutableObjectAttribute.cs
- ImageBrush.cs
- GridView.cs
- RuntimeConfigLKG.cs
- HelpInfo.cs
- TableLayoutColumnStyleCollection.cs
- OleDbDataReader.cs
- LinqMaximalSubtreeNominator.cs
- CommandField.cs
- WinInetCache.cs
- PaintValueEventArgs.cs
- WorkflowRequestContext.cs
- QueryGenerator.cs
- GlyphsSerializer.cs
- TreeWalkHelper.cs
- RegisterInfo.cs
- XmlDataImplementation.cs
- CheckoutException.cs
- ContentPathSegment.cs
- ProgressBar.cs
- GridErrorDlg.cs
- ISO2022Encoding.cs
- ModuleConfigurationInfo.cs
- BitStack.cs
- TypeUsage.cs
- ListSortDescription.cs
- PopOutPanel.cs
- LinqDataSourceEditData.cs
- CompiledRegexRunnerFactory.cs
- XsltQilFactory.cs
- GradientStop.cs
- SqlInternalConnectionSmi.cs
- SchemaNames.cs
- TypeListConverter.cs
- NotifyIcon.cs
- FontUnitConverter.cs
- UpdateManifestForBrowserApplication.cs
- DataGridViewLinkColumn.cs
- Blend.cs
- LoginName.cs
- CryptoHandle.cs
- NameTable.cs
- DBProviderConfigurationHandler.cs
- GZipStream.cs
- AttachedPropertyMethodSelector.cs
- DiscardableAttribute.cs
- FieldToken.cs
- DataGridViewMethods.cs
- ServiceEndpointCollection.cs
- WebPartHeaderCloseVerb.cs
- IconHelper.cs
- DataGridRowAutomationPeer.cs
- HtmlInputSubmit.cs
- StylusPointPropertyInfoDefaults.cs
- ContentDesigner.cs
- TextContainer.cs
- UserNameSecurityTokenParameters.cs
- PolyLineSegmentFigureLogic.cs
- ClientApiGenerator.cs
- HMACSHA1.cs
- InvalidateEvent.cs
- FormatterConverter.cs
- ProxyWebPartConnectionCollection.cs
- ISCIIEncoding.cs
- AxisAngleRotation3D.cs
- ProfilePropertySettings.cs
- BitVector32.cs
- AttributedMetaModel.cs
- BitmapEffectCollection.cs
- initElementDictionary.cs
- HostedController.cs
- AppDomainFactory.cs
- CodeCatchClauseCollection.cs
- DataGridItemCollection.cs
- SqlProfileProvider.cs
- XslAstAnalyzer.cs
- IxmlLineInfo.cs
- ToolStripItemEventArgs.cs
- SiteMembershipCondition.cs
- MimeTextImporter.cs
- SqlBooleanizer.cs
- Array.cs
- BlobPersonalizationState.cs
- AppearanceEditorPart.cs
- NativeMethods.cs
- DataObjectSettingDataEventArgs.cs
- SerialPinChanges.cs
- XmlWellformedWriter.cs
- HttpClientCertificate.cs