Code:
/ FX-1434 / FX-1434 / 1.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
- XmlWrappingReader.cs
- keycontainerpermission.cs
- EventWaitHandleSecurity.cs
- Paragraph.cs
- BitmapInitialize.cs
- PropertyEmitter.cs
- X509CertificateCollection.cs
- JournalNavigationScope.cs
- DetailsViewInsertedEventArgs.cs
- FormDocumentDesigner.cs
- ProxyHelper.cs
- MatchingStyle.cs
- PropertyGridView.cs
- Behavior.cs
- RSATokenProvider.cs
- HttpCacheVaryByContentEncodings.cs
- RMEnrollmentPage2.cs
- ContentElementAutomationPeer.cs
- DataGridTextBox.cs
- WebInvokeAttribute.cs
- OutputCacheProfile.cs
- EmptyEnumerable.cs
- ReadWriteObjectLock.cs
- CompressStream.cs
- RuleSettings.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- ReadWriteSpinLock.cs
- RandomNumberGenerator.cs
- DataGridViewCellCollection.cs
- HtmlInputCheckBox.cs
- NonBatchDirectoryCompiler.cs
- OleDbEnumerator.cs
- HTMLTextWriter.cs
- SAPICategories.cs
- M3DUtil.cs
- XPathDescendantIterator.cs
- DesignTimeSiteMapProvider.cs
- SmiEventStream.cs
- HitTestWithPointDrawingContextWalker.cs
- BufferModeSettings.cs
- BuilderInfo.cs
- ConnectionStringsExpressionBuilder.cs
- XmlDataSourceView.cs
- DataReceivedEventArgs.cs
- FixedTextView.cs
- AutomationElementCollection.cs
- DBSchemaTable.cs
- HideDisabledControlAdapter.cs
- HttpHandlerAction.cs
- Image.cs
- ColorConvertedBitmap.cs
- cryptoapiTransform.cs
- Label.cs
- BuildManagerHost.cs
- WebPartAddingEventArgs.cs
- Color.cs
- __TransparentProxy.cs
- DataGridViewButtonCell.cs
- UrlRoutingHandler.cs
- IdnElement.cs
- SqlBuilder.cs
- AspNetPartialTrustHelpers.cs
- WindowInteractionStateTracker.cs
- SrgsText.cs
- RevocationPoint.cs
- FixedDocumentSequencePaginator.cs
- SqlSelectClauseBuilder.cs
- FreeFormDesigner.cs
- ReferenceEqualityComparer.cs
- JournalEntryListConverter.cs
- OutputCacheModule.cs
- XmlDocumentFragment.cs
- OverflowException.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- UIElementHelper.cs
- HtmlObjectListAdapter.cs
- WebPartsSection.cs
- StringUtil.cs
- ItemChangedEventArgs.cs
- BitmapFrameEncode.cs
- CatalogPart.cs
- SystemIPInterfaceProperties.cs
- DataGridRelationshipRow.cs
- StringValueSerializer.cs
- DbBuffer.cs
- GifBitmapDecoder.cs
- ResourceAttributes.cs
- DashStyle.cs
- SemaphoreFullException.cs
- CompareValidator.cs
- StyleCollectionEditor.cs
- TripleDESCryptoServiceProvider.cs
- XslCompiledTransform.cs
- AmbiguousMatchException.cs
- NotifyIcon.cs
- ObjectQuery_EntitySqlExtensions.cs
- ImageSource.cs
- DetailsViewUpdateEventArgs.cs
- BulletedListEventArgs.cs
- ProfilePropertySettings.cs