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
- Point3DCollection.cs
- XslCompiledTransform.cs
- Int32CollectionValueSerializer.cs
- DataRowCollection.cs
- PointCollectionConverter.cs
- PropertyCollection.cs
- Win32.cs
- UTF8Encoding.cs
- BookmarkScopeHandle.cs
- XPathNodeIterator.cs
- UTF32Encoding.cs
- TrackingMemoryStreamFactory.cs
- ToolStripDropTargetManager.cs
- SqlException.cs
- Delegate.cs
- ThreadExceptionDialog.cs
- PasswordTextNavigator.cs
- XmlSchemaExternal.cs
- XPathDocumentNavigator.cs
- BindingsCollection.cs
- PerformanceCounterLib.cs
- DropDownList.cs
- TypeDefinition.cs
- FileDialog.cs
- SerialErrors.cs
- UpdateCommand.cs
- Camera.cs
- PreProcessor.cs
- FrugalMap.cs
- SimpleHandlerBuildProvider.cs
- PassportIdentity.cs
- RSAProtectedConfigurationProvider.cs
- NotificationContext.cs
- AssemblyHash.cs
- MessageQueueCriteria.cs
- DBBindings.cs
- StorageEntityContainerMapping.cs
- ExceptionUtility.cs
- Int64Converter.cs
- XsltCompileContext.cs
- InteropBitmapSource.cs
- SchemaTypeEmitter.cs
- InlinedAggregationOperator.cs
- RtfNavigator.cs
- WebHeaderCollection.cs
- SQLBoolean.cs
- PointCollection.cs
- connectionpool.cs
- GridEntryCollection.cs
- newitemfactory.cs
- LineBreak.cs
- SiteMapDataSourceView.cs
- Listen.cs
- AccessViolationException.cs
- DBSqlParserColumnCollection.cs
- ToolStripPanelCell.cs
- BasePropertyDescriptor.cs
- HtmlHistory.cs
- XhtmlCssHandler.cs
- ValueUtilsSmi.cs
- DataColumnMappingCollection.cs
- FileSystemInfo.cs
- CustomErrorsSection.cs
- RC2CryptoServiceProvider.cs
- XamlToRtfWriter.cs
- DataBoundControlParameterTarget.cs
- InternalTypeHelper.cs
- MediaElement.cs
- TemplatedEditableDesignerRegion.cs
- Animatable.cs
- PrintPageEvent.cs
- WebPartAddingEventArgs.cs
- BamlRecordHelper.cs
- FigureParagraph.cs
- SqlColumnizer.cs
- MultipartIdentifier.cs
- SelectedCellsCollection.cs
- PathStreamGeometryContext.cs
- SocketException.cs
- DataColumnCollection.cs
- LineProperties.cs
- DebuggerAttributes.cs
- WorkflowViewStateService.cs
- DelegateBodyWriter.cs
- MetaChildrenColumn.cs
- SelectionPatternIdentifiers.cs
- SoapMessage.cs
- dsa.cs
- GenericRootAutomationPeer.cs
- CodePageEncoding.cs
- VisualTarget.cs
- TextTreeObjectNode.cs
- SiteMapNode.cs
- Int64AnimationUsingKeyFrames.cs
- OperationParameterInfoCollection.cs
- SoapTypeAttribute.cs
- DescendantOverDescendantQuery.cs
- Collection.cs
- LocatorManager.cs
- DataRecord.cs