Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / PersistenceTypeAttribute.cs / 1 / PersistenceTypeAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Runtime.InteropServices; using System; using System.ComponentModel; using System.Security.Permissions; ////// 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)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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; using System.Security.Permissions; ////// 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)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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
- OdbcConnectionPoolProviderInfo.cs
- TimeSpanFormat.cs
- DebugView.cs
- PresentationTraceSources.cs
- Memoizer.cs
- TCPClient.cs
- XmlValidatingReaderImpl.cs
- TemplateField.cs
- EventMappingSettingsCollection.cs
- Point3DAnimation.cs
- ListBox.cs
- HtmlFormWrapper.cs
- FileAuthorizationModule.cs
- FontConverter.cs
- MulticastDelegate.cs
- GPStream.cs
- FixedFlowMap.cs
- SchemaComplexType.cs
- CodeTypeMember.cs
- SoapAttributeOverrides.cs
- ContentPosition.cs
- RuntimeConfigurationRecord.cs
- SHA512Managed.cs
- PolyLineSegment.cs
- WebPartVerbsEventArgs.cs
- NativeMethods.cs
- TimeSpanValidator.cs
- DocumentViewer.cs
- WizardDesigner.cs
- DefaultMergeHelper.cs
- BezierSegment.cs
- DataSourceHelper.cs
- ReadOnlyPropertyMetadata.cs
- Parser.cs
- PingReply.cs
- DefaultSerializationProviderAttribute.cs
- XmlDocument.cs
- WebServiceReceive.cs
- BaseCollection.cs
- XmlNodeChangedEventManager.cs
- ControlCachePolicy.cs
- PartManifestEntry.cs
- ArrangedElement.cs
- Int64Animation.cs
- DBSqlParserTable.cs
- PersistenceTypeAttribute.cs
- PropertyDescriptorComparer.cs
- PerformanceCounterPermissionEntry.cs
- CommandTreeTypeHelper.cs
- ListItemCollection.cs
- PrintDialog.cs
- WebPartCancelEventArgs.cs
- SlotInfo.cs
- XmlAttribute.cs
- _DomainName.cs
- StructuredType.cs
- Buffer.cs
- ResourceProviderFactory.cs
- SqlRowUpdatingEvent.cs
- Part.cs
- XmlMtomWriter.cs
- MessageQueueConverter.cs
- SafeFileHandle.cs
- TypeAccessException.cs
- MediaEntryAttribute.cs
- Filter.cs
- PlaceHolder.cs
- InstanceHandle.cs
- ConstantProjectedSlot.cs
- thaishape.cs
- ObjectCloneHelper.cs
- MailAddress.cs
- TickBar.cs
- Graph.cs
- SystemColorTracker.cs
- ListMarkerLine.cs
- PointHitTestParameters.cs
- TableCell.cs
- ThicknessAnimation.cs
- NotFiniteNumberException.cs
- Scene3D.cs
- Script.cs
- XsltSettings.cs
- RequestCacheEntry.cs
- AdornerPresentationContext.cs
- ScaleTransform.cs
- UpdateRecord.cs
- TextEditorTyping.cs
- DataGridViewSortCompareEventArgs.cs
- MenuScrollingVisibilityConverter.cs
- safesecurityhelperavalon.cs
- ReadOnlyTernaryTree.cs
- OracleSqlParser.cs
- ObjectQuery_EntitySqlExtensions.cs
- SizeIndependentAnimationStorage.cs
- SrgsText.cs
- SelectionListComponentEditor.cs
- IndentedWriter.cs
- DbException.cs
- TypeConverter.cs