Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / PersistenceTypeAttribute.cs / 1305376 / PersistenceTypeAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Runtime.InteropServices; using System; using System.ComponentModel; ////// LiteralContentAttribute indicates whether the contents within a tag representing /// a custom/web control should be treated by Trident as a "literal/text" content. /// Web controls supporting complex properties (like Templates, etc.) typically /// mark themselves as "literals", thereby letting the designer infra-structure /// and Trident deal with the persistence of those attributes. /// /// If LiteralContentAttribute.No is present or no LiteralContentAttribute marking /// exists, then the tag corresponding to the web control is not treated as a literal /// content tag. /// If LiteralContentAttribute.Yes is present, then the tag corresponding to the web /// control is treated as a literal content tag. /// [AttributeUsage(AttributeTargets.All)] public sealed class PersistenceModeAttribute : Attribute { ////// This marks a property or event as persistable in the HTML tag as an attribute. /// public static readonly PersistenceModeAttribute Attribute = new PersistenceModeAttribute(PersistenceMode.Attribute); ////// This marks a property or event as persistable within the HTML tag as a nested tag. /// public static readonly PersistenceModeAttribute InnerProperty = new PersistenceModeAttribute(PersistenceMode.InnerProperty); ////// This marks a property or event as persistable within the HTML tag as a child. /// public static readonly PersistenceModeAttribute InnerDefaultProperty = new PersistenceModeAttribute(PersistenceMode.InnerDefaultProperty); ////// This marks a property or event as persistable within the HTML tag as a child. /// public static readonly PersistenceModeAttribute EncodedInnerDefaultProperty = new PersistenceModeAttribute(PersistenceMode.EncodedInnerDefaultProperty); ////// public static readonly PersistenceModeAttribute Default = Attribute; private PersistenceMode mode = PersistenceMode.Attribute; ///public PersistenceModeAttribute(PersistenceMode mode) { if (mode < PersistenceMode.Attribute || mode > PersistenceMode.EncodedInnerDefaultProperty) { throw new ArgumentOutOfRangeException("mode"); } this.mode = mode; } /// /// public PersistenceMode Mode { get { return mode; } } ///public override int GetHashCode() { return Mode.GetHashCode(); } /// /// ///public override bool Equals(object obj) { if (obj == this) { return true; } if ((obj != null) && (obj is PersistenceModeAttribute)) { return((PersistenceModeAttribute)obj).Mode == mode; } 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.Runtime.InteropServices; using System; using System.ComponentModel; ////// LiteralContentAttribute indicates whether the contents within a tag representing /// a custom/web control should be treated by Trident as a "literal/text" content. /// Web controls supporting complex properties (like Templates, etc.) typically /// mark themselves as "literals", thereby letting the designer infra-structure /// and Trident deal with the persistence of those attributes. /// /// If LiteralContentAttribute.No is present or no LiteralContentAttribute marking /// exists, then the tag corresponding to the web control is not treated as a literal /// content tag. /// If LiteralContentAttribute.Yes is present, then the tag corresponding to the web /// control is treated as a literal content tag. /// [AttributeUsage(AttributeTargets.All)] public sealed class PersistenceModeAttribute : Attribute { ////// This marks a property or event as persistable in the HTML tag as an attribute. /// public static readonly PersistenceModeAttribute Attribute = new PersistenceModeAttribute(PersistenceMode.Attribute); ////// This marks a property or event as persistable within the HTML tag as a nested tag. /// public static readonly PersistenceModeAttribute InnerProperty = new PersistenceModeAttribute(PersistenceMode.InnerProperty); ////// This marks a property or event as persistable within the HTML tag as a child. /// public static readonly PersistenceModeAttribute InnerDefaultProperty = new PersistenceModeAttribute(PersistenceMode.InnerDefaultProperty); ////// This marks a property or event as persistable within the HTML tag as a child. /// public static readonly PersistenceModeAttribute EncodedInnerDefaultProperty = new PersistenceModeAttribute(PersistenceMode.EncodedInnerDefaultProperty); ////// public static readonly PersistenceModeAttribute Default = Attribute; private PersistenceMode mode = PersistenceMode.Attribute; ///public PersistenceModeAttribute(PersistenceMode mode) { if (mode < PersistenceMode.Attribute || mode > PersistenceMode.EncodedInnerDefaultProperty) { throw new ArgumentOutOfRangeException("mode"); } this.mode = mode; } /// /// public PersistenceMode Mode { get { return mode; } } ///public override int GetHashCode() { return Mode.GetHashCode(); } /// /// ///public override bool Equals(object obj) { if (obj == this) { return true; } if ((obj != null) && (obj is PersistenceModeAttribute)) { return((PersistenceModeAttribute)obj).Mode == mode; } 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
- SecurityTokenSerializer.cs
- PropertyTab.cs
- MimeMapping.cs
- ServerIdentity.cs
- EvidenceBase.cs
- XPathEmptyIterator.cs
- UserPreferenceChangingEventArgs.cs
- updateconfighost.cs
- exports.cs
- BasicHttpMessageSecurity.cs
- AssociationSet.cs
- PrinterResolution.cs
- FixedPage.cs
- DataGridViewColumnCollection.cs
- SafeWaitHandle.cs
- contentDescriptor.cs
- BooleanAnimationUsingKeyFrames.cs
- UserControl.cs
- ListSortDescriptionCollection.cs
- PictureBox.cs
- MultiViewDesigner.cs
- DataColumnMappingCollection.cs
- MenuRendererClassic.cs
- ArglessEventHandlerProxy.cs
- NavigationPropertyEmitter.cs
- RuleRefElement.cs
- RelationshipConverter.cs
- CustomErrorsSectionWrapper.cs
- MemoryStream.cs
- TextChange.cs
- WebPermission.cs
- HtmlForm.cs
- MergePropertyDescriptor.cs
- DispatcherSynchronizationContext.cs
- CollectionViewGroupInternal.cs
- BufferedWebEventProvider.cs
- _HelperAsyncResults.cs
- SystemInfo.cs
- TableStyle.cs
- Operators.cs
- TabControl.cs
- NamespaceImport.cs
- ValidationRule.cs
- MasterPageCodeDomTreeGenerator.cs
- HwndProxyElementProvider.cs
- XmlSchemaInfo.cs
- WindowsAuthenticationModule.cs
- DataGridViewIntLinkedList.cs
- CompiledAction.cs
- DocumentPaginator.cs
- BuildProvider.cs
- DefaultValueTypeConverter.cs
- ImpersonationContext.cs
- XmlAtomicValue.cs
- ValueUnavailableException.cs
- WindowsSolidBrush.cs
- HMACSHA1.cs
- DoubleStorage.cs
- COM2PropertyDescriptor.cs
- XPathNodeHelper.cs
- HtmlInputSubmit.cs
- XPathNode.cs
- IssuedTokenClientBehaviorsElement.cs
- SafeNativeHandle.cs
- WebRequest.cs
- BindingGroup.cs
- RTLAwareMessageBox.cs
- RegisteredArrayDeclaration.cs
- hwndwrapper.cs
- ReadOnlyTernaryTree.cs
- TripleDES.cs
- ColorInterpolationModeValidation.cs
- CryptographicAttribute.cs
- XmlQueryOutput.cs
- DispatcherExceptionEventArgs.cs
- ProcessRequestArgs.cs
- DynamicMethod.cs
- BasicHttpMessageSecurity.cs
- MSAAEventDispatcher.cs
- NativeMethodsOther.cs
- GeometryDrawing.cs
- XmlSchemaCollection.cs
- RepeaterItem.cs
- WriteTimeStream.cs
- ResXResourceReader.cs
- XmlAttributeOverrides.cs
- ShimAsPublicXamlType.cs
- DependencyObjectProvider.cs
- PrintControllerWithStatusDialog.cs
- TextTreeFixupNode.cs
- CngUIPolicy.cs
- WindowProviderWrapper.cs
- CompositeControl.cs
- SerialReceived.cs
- DataBindingHandlerAttribute.cs
- shaperfactoryquerycacheentry.cs
- CompilerErrorCollection.cs
- InheritedPropertyChangedEventArgs.cs
- SHA384.cs
- DBConnectionString.cs