Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / PersistChildrenAttribute.cs / 1305376 / PersistChildrenAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.ComponentModel; ////// [AttributeUsage(AttributeTargets.Class)] 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. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.ComponentModel; ////// [AttributeUsage(AttributeTargets.Class)] 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- QilName.cs
- HiddenFieldPageStatePersister.cs
- PopupRoot.cs
- UnitySerializationHolder.cs
- RenderOptions.cs
- DrawingContextDrawingContextWalker.cs
- TrackingDataItem.cs
- TransactionProtocolConverter.cs
- TextProviderWrapper.cs
- InkCanvasSelection.cs
- TextServicesManager.cs
- RtType.cs
- TextViewSelectionProcessor.cs
- DBBindings.cs
- XmlTextWriter.cs
- panel.cs
- ChangeDirector.cs
- Range.cs
- MobileDeviceCapabilitiesSectionHandler.cs
- XsdBuildProvider.cs
- FacetValueContainer.cs
- InstanceView.cs
- HtmlTitle.cs
- DeflateStream.cs
- EventMappingSettingsCollection.cs
- CheckBoxRenderer.cs
- NavigationCommands.cs
- TableDetailsCollection.cs
- LambdaCompiler.Logical.cs
- OutputCacheSettings.cs
- PopupControlService.cs
- SymbolMethod.cs
- HttpEncoderUtility.cs
- RegexEditorDialog.cs
- UnsafeNativeMethodsTablet.cs
- Group.cs
- DataRelationPropertyDescriptor.cs
- MdiWindowListItemConverter.cs
- UnsafeNativeMethods.cs
- DataRowComparer.cs
- EntityStoreSchemaFilterEntry.cs
- IHttpResponseInternal.cs
- BindStream.cs
- TriggerCollection.cs
- FacetEnabledSchemaElement.cs
- PaintEvent.cs
- DocumentPaginator.cs
- TextEditorMouse.cs
- DnsElement.cs
- SystemPens.cs
- ToolStripRenderEventArgs.cs
- TableAdapterManagerHelper.cs
- TextPointer.cs
- Menu.cs
- HttpApplication.cs
- WebUtil.cs
- Permission.cs
- StrokeSerializer.cs
- SecurityAlgorithmSuite.cs
- KoreanLunisolarCalendar.cs
- PropertyGridCommands.cs
- DateBoldEvent.cs
- ReflectionPermission.cs
- EventListenerClientSide.cs
- _SslStream.cs
- FolderBrowserDialogDesigner.cs
- SqlTriggerAttribute.cs
- Optimizer.cs
- WebConfigurationHost.cs
- TranslateTransform.cs
- DrawingContextWalker.cs
- SafeNativeMethods.cs
- DurableDispatcherAddressingFault.cs
- GZipStream.cs
- DependencyPropertyKey.cs
- SQLRoleProvider.cs
- TextPointer.cs
- SharedStatics.cs
- ConnectionPoint.cs
- MessageHeaders.cs
- CodeBlockBuilder.cs
- ReadOnlyDataSourceView.cs
- BulletedList.cs
- DataContract.cs
- DataGridViewDataErrorEventArgs.cs
- OdbcPermission.cs
- FlowDocumentReader.cs
- MLangCodePageEncoding.cs
- GZipStream.cs
- HttpChannelHelpers.cs
- BaseResourcesBuildProvider.cs
- WindowsEditBox.cs
- DbTransaction.cs
- BinaryVersion.cs
- WebHttpBinding.cs
- FilePresentation.cs
- CharConverter.cs
- GlobalEventManager.cs
- FacetValues.cs
- _CommandStream.cs