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
- TableProviderWrapper.cs
- TimeSpan.cs
- DependencyPropertyChangedEventArgs.cs
- DelegatingTypeDescriptionProvider.cs
- SiteOfOriginContainer.cs
- Selection.cs
- ParameterElement.cs
- ImmutableObjectAttribute.cs
- BitmapImage.cs
- MulticastDelegate.cs
- HostedNamedPipeTransportManager.cs
- BooleanKeyFrameCollection.cs
- UnmanagedMemoryStreamWrapper.cs
- SqlAggregateChecker.cs
- IsolatedStorageFilePermission.cs
- KeyValueSerializer.cs
- basemetadatamappingvisitor.cs
- HtmlWindow.cs
- ValueType.cs
- RelationalExpressions.cs
- ExecutionEngineException.cs
- webclient.cs
- UserPreferenceChangedEventArgs.cs
- XmlQueryCardinality.cs
- AdapterUtil.cs
- FileAuthorizationModule.cs
- FileDialogPermission.cs
- GPPOINT.cs
- HtmlLink.cs
- PrtTicket_Base.cs
- DataGridPagerStyle.cs
- ChangeNode.cs
- ExtenderHelpers.cs
- XmlDocument.cs
- ServiceBuildProvider.cs
- UTF32Encoding.cs
- TableLayoutSettings.cs
- JavaScriptObjectDeserializer.cs
- DateRangeEvent.cs
- WorkItem.cs
- DbProviderSpecificTypePropertyAttribute.cs
- AutoResizedEvent.cs
- WebPartDescriptionCollection.cs
- CodeObjectCreateExpression.cs
- SqlWebEventProvider.cs
- ResXBuildProvider.cs
- AuthenticationService.cs
- KeyGestureConverter.cs
- versioninfo.cs
- XmlCharCheckingWriter.cs
- ITextView.cs
- DbCommandTree.cs
- FilterException.cs
- EntityType.cs
- TailCallAnalyzer.cs
- StringResourceManager.cs
- DecoderExceptionFallback.cs
- OleServicesContext.cs
- HyperlinkAutomationPeer.cs
- HwndSourceParameters.cs
- CommandDesigner.cs
- IndicCharClassifier.cs
- ISAPIWorkerRequest.cs
- InstanceOwnerException.cs
- DataSvcMapFileSerializer.cs
- DesignerSerializationVisibilityAttribute.cs
- BindingMAnagerBase.cs
- DataGridViewSelectedColumnCollection.cs
- List.cs
- BinaryHeap.cs
- BuildDependencySet.cs
- Stack.cs
- TextEditorContextMenu.cs
- _DisconnectOverlappedAsyncResult.cs
- DesignBindingPropertyDescriptor.cs
- ChangesetResponse.cs
- ReferenceEqualityComparer.cs
- Debug.cs
- ConfigXmlElement.cs
- Triangle.cs
- PageContentCollection.cs
- HttpResponseInternalBase.cs
- UITypeEditor.cs
- PageWrapper.cs
- CodeConstructor.cs
- ListBox.cs
- AssemblySettingAttributes.cs
- GridItemCollection.cs
- CompilerLocalReference.cs
- DataGridViewTextBoxCell.cs
- SqlDataSourceFilteringEventArgs.cs
- ScrollBarAutomationPeer.cs
- ValidationSummary.cs
- EnvelopedPkcs7.cs
- FocusManager.cs
- UiaCoreProviderApi.cs
- ScriptDescriptor.cs
- AxDesigner.cs
- FixedPageProcessor.cs
- RecordConverter.cs