Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WindowsComboBox.cs
- RouteData.cs
- HandleTable.cs
- DispatcherSynchronizationContext.cs
- XmlSchemaAttributeGroupRef.cs
- LoadWorkflowByInstanceKeyCommand.cs
- SemanticAnalyzer.cs
- ServiceModelTimeSpanValidator.cs
- DragDeltaEventArgs.cs
- ResourcePart.cs
- Empty.cs
- EpmSyndicationContentSerializer.cs
- Int16.cs
- DesignerVerbToolStripMenuItem.cs
- CompiledQuery.cs
- DataMisalignedException.cs
- CompositeTypefaceMetrics.cs
- PerformanceCounter.cs
- TextServicesPropertyRanges.cs
- TextFormatterContext.cs
- SecurityValidationBehavior.cs
- QuaternionRotation3D.cs
- FieldMetadata.cs
- WebPartCatalogCloseVerb.cs
- PlanCompilerUtil.cs
- Rotation3D.cs
- DataKey.cs
- OdbcReferenceCollection.cs
- Ppl.cs
- ComponentResourceKeyConverter.cs
- ChannelDispatcherCollection.cs
- InheritanceContextChangedEventManager.cs
- SystemParameters.cs
- TextContainerHelper.cs
- AssemblyInfo.cs
- InplaceBitmapMetadataWriter.cs
- ChangePassword.cs
- SR.Designer.cs
- ACL.cs
- DoubleConverter.cs
- RedirectionProxy.cs
- DelegatingTypeDescriptionProvider.cs
- QueuePathDialog.cs
- CriticalExceptions.cs
- StrokeCollection2.cs
- PrintPreviewGraphics.cs
- ColorMatrix.cs
- HttpRuntimeSection.cs
- ColorMap.cs
- DataSourceView.cs
- BindableAttribute.cs
- MessageQueuePermissionEntryCollection.cs
- TypeSemantics.cs
- PersonalizationStateInfoCollection.cs
- AsyncStreamReader.cs
- EventLogPermissionEntry.cs
- InternalRelationshipCollection.cs
- HierarchicalDataTemplate.cs
- DataBinding.cs
- RemotingSurrogateSelector.cs
- ImageInfo.cs
- HttpValueCollection.cs
- MembershipSection.cs
- AtomPub10ServiceDocumentFormatter.cs
- HistoryEventArgs.cs
- DataGridTableCollection.cs
- DataMemberListEditor.cs
- FixedBufferAttribute.cs
- QueryOutputWriter.cs
- Button.cs
- DiagnosticTrace.cs
- AutomationIdentifierGuids.cs
- QilVisitor.cs
- EnlistmentTraceIdentifier.cs
- _Connection.cs
- ScriptingRoleServiceSection.cs
- ColumnResizeUndoUnit.cs
- ForEachAction.cs
- DataGridViewTopLeftHeaderCell.cs
- SectionUpdates.cs
- OleDbConnectionFactory.cs
- ListViewContainer.cs
- XmlBinaryWriterSession.cs
- ContentElementAutomationPeer.cs
- adornercollection.cs
- ImageSource.cs
- SemaphoreSlim.cs
- LocalizabilityAttribute.cs
- RegexNode.cs
- DataSourceProvider.cs
- ParameterCollection.cs
- VerticalAlignConverter.cs
- DockAndAnchorLayout.cs
- BaseCAMarshaler.cs
- TableRowCollection.cs
- HuffCodec.cs
- iisPickupDirectory.cs
- _TimerThread.cs
- IncomingWebResponseContext.cs
- MemberInfoSerializationHolder.cs