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
- DelegatingMessage.cs
- ProfileSettingsCollection.cs
- DataSourceCacheDurationConverter.cs
- ClientEndpointLoader.cs
- TextServicesProperty.cs
- configsystem.cs
- WebPartZoneCollection.cs
- InheritanceService.cs
- TableSectionStyle.cs
- Stroke2.cs
- NameNode.cs
- ColumnTypeConverter.cs
- MenuItemCollection.cs
- DataServicePagingProviderWrapper.cs
- MainMenu.cs
- itemelement.cs
- CodeThrowExceptionStatement.cs
- RequestContext.cs
- PeerEndPoint.cs
- SafeMarshalContext.cs
- DrawListViewSubItemEventArgs.cs
- UserControlCodeDomTreeGenerator.cs
- ReadOnlyCollection.cs
- MonthCalendarDesigner.cs
- ConstraintEnumerator.cs
- _TLSstream.cs
- SimpleMailWebEventProvider.cs
- DrawingContextDrawingContextWalker.cs
- HtmlElementEventArgs.cs
- PropertyPushdownHelper.cs
- PageSetupDialog.cs
- WindowsFormsLinkLabel.cs
- DesignSurfaceServiceContainer.cs
- SessionPageStatePersister.cs
- SqlBulkCopy.cs
- FixedLineResult.cs
- FragmentQuery.cs
- EventTask.cs
- X509ChainPolicy.cs
- ISCIIEncoding.cs
- Parser.cs
- XslAstAnalyzer.cs
- TextParentUndoUnit.cs
- NetworkStream.cs
- StylusEditingBehavior.cs
- SID.cs
- TextRunCacheImp.cs
- ShutDownListener.cs
- TemplateField.cs
- ProfilePropertySettingsCollection.cs
- Image.cs
- RectKeyFrameCollection.cs
- ListViewDeleteEventArgs.cs
- EventLogEntryCollection.cs
- SchemaCollectionPreprocessor.cs
- RangeValuePattern.cs
- CqlWriter.cs
- RegexStringValidatorAttribute.cs
- AttributeCollection.cs
- SeekStoryboard.cs
- ColumnCollection.cs
- EntityProviderFactory.cs
- SqlFlattener.cs
- Array.cs
- DispatcherTimer.cs
- OpenTypeLayoutCache.cs
- Interlocked.cs
- storepermission.cs
- XamlPoint3DCollectionSerializer.cs
- PowerStatus.cs
- HwndSource.cs
- Vector3DAnimationUsingKeyFrames.cs
- ErrorEventArgs.cs
- TextEffectResolver.cs
- HandlerMappingMemo.cs
- SelectionProcessor.cs
- XmlUrlResolver.cs
- Solver.cs
- UTF32Encoding.cs
- LinqDataSourceDeleteEventArgs.cs
- CaseKeyBox.xaml.cs
- WinFormsUtils.cs
- Point3DCollectionConverter.cs
- SkipQueryOptionExpression.cs
- TableTextElementCollectionInternal.cs
- DBAsyncResult.cs
- MostlySingletonList.cs
- RegexReplacement.cs
- DataGridViewTextBoxEditingControl.cs
- EntityDataSourceContextCreatingEventArgs.cs
- DataTableExtensions.cs
- ResourceReferenceExpressionConverter.cs
- XmlWriterSettings.cs
- SelectorAutomationPeer.cs
- HuffCodec.cs
- DataGridViewLinkCell.cs
- Faults.cs
- XsltArgumentList.cs
- Pair.cs
- PageRequestManager.cs