Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PaperSource.cs
- FontDriver.cs
- JsonStringDataContract.cs
- CodeChecksumPragma.cs
- BinaryObjectReader.cs
- TextEndOfParagraph.cs
- HttpContext.cs
- MatrixTransform.cs
- ActivityDesignerResources.cs
- RowTypeElement.cs
- VBIdentifierNameEditor.cs
- OrthographicCamera.cs
- Line.cs
- log.cs
- AggregateNode.cs
- TreeViewEvent.cs
- TextRangeEditTables.cs
- MarkupCompiler.cs
- SerializationFieldInfo.cs
- TraceContextEventArgs.cs
- ValidationRuleCollection.cs
- ADMembershipUser.cs
- DocumentSchemaValidator.cs
- CollectionTypeElement.cs
- SByteConverter.cs
- CookielessHelper.cs
- ValidationEventArgs.cs
- DataTableReader.cs
- _SafeNetHandles.cs
- MethodRental.cs
- ImageFormat.cs
- DataGridViewLinkCell.cs
- _TransmitFileOverlappedAsyncResult.cs
- SoapEnumAttribute.cs
- securestring.cs
- Validator.cs
- ParserHooks.cs
- StylusPointProperty.cs
- WindowsSpinner.cs
- ImageCodecInfo.cs
- SecurityKeyIdentifierClause.cs
- ContextBase.cs
- ComProxy.cs
- CompositeKey.cs
- XpsS0ValidatingLoader.cs
- StreamWithDictionary.cs
- QilList.cs
- HtmlInputReset.cs
- System.Data_BID.cs
- XmlStringTable.cs
- SqlDataSourceStatusEventArgs.cs
- Relationship.cs
- coordinatorscratchpad.cs
- TypeKeyValue.cs
- TagPrefixCollection.cs
- EventRecordWrittenEventArgs.cs
- WindowsEditBoxRange.cs
- ConfigurationSection.cs
- FastEncoderWindow.cs
- CodeSnippetTypeMember.cs
- XsdBuilder.cs
- ComplexTypeEmitter.cs
- UDPClient.cs
- GeneralTransform3DGroup.cs
- ServiceContractViewControl.cs
- XmlSchemaSimpleContent.cs
- OAVariantLib.cs
- ObjectMemberMapping.cs
- TraceContext.cs
- RowUpdatingEventArgs.cs
- DBCSCodePageEncoding.cs
- ObjectDataSource.cs
- DataFieldConverter.cs
- EmbeddedMailObjectsCollection.cs
- uribuilder.cs
- DBProviderConfigurationHandler.cs
- ArrayElementGridEntry.cs
- DispatcherEventArgs.cs
- ComboBoxRenderer.cs
- DataGridViewCellStyleConverter.cs
- EllipticalNodeOperations.cs
- TemplatedMailWebEventProvider.cs
- AudioSignalProblemOccurredEventArgs.cs
- ThousandthOfEmRealPoints.cs
- dsa.cs
- CustomAttributeFormatException.cs
- MemberPath.cs
- CodeGenerator.cs
- HtmlInputSubmit.cs
- DataTransferEventArgs.cs
- PointAnimationUsingPath.cs
- SortFieldComparer.cs
- ManipulationInertiaStartingEventArgs.cs
- Int64AnimationBase.cs
- DbInsertCommandTree.cs
- ExternalException.cs
- WorkflowFileItem.cs
- ByteKeyFrameCollection.cs
- Brush.cs
- securitymgrsite.cs