Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EventLogPermission.cs
- AsyncResult.cs
- InkSerializer.cs
- wpf-etw.cs
- MessageQueuePermissionEntry.cs
- GridViewCancelEditEventArgs.cs
- LogicalTreeHelper.cs
- InkCanvasInnerCanvas.cs
- QilLoop.cs
- ComponentEditorForm.cs
- SqlConnectionStringBuilder.cs
- BaseDataBoundControl.cs
- HostedHttpRequestAsyncResult.cs
- DrawingBrush.cs
- StackOverflowException.cs
- InplaceBitmapMetadataWriter.cs
- ProgressBar.cs
- Substitution.cs
- SmtpMail.cs
- UniqueContractNameValidationBehavior.cs
- ObjectConverter.cs
- PageAdapter.cs
- DateTime.cs
- WebBaseEventKeyComparer.cs
- _AuthenticationState.cs
- StringExpressionSet.cs
- ZipIOCentralDirectoryFileHeader.cs
- Point4DConverter.cs
- HScrollProperties.cs
- TreeNodeConverter.cs
- ByeOperationCD1AsyncResult.cs
- EntityContainerEmitter.cs
- Adorner.cs
- DataRelation.cs
- MetaData.cs
- CustomValidator.cs
- RequestQueue.cs
- RootBuilder.cs
- SafeFileMappingHandle.cs
- SelfIssuedAuthProofToken.cs
- Logging.cs
- XmlEnumAttribute.cs
- CustomValidator.cs
- TrailingSpaceComparer.cs
- SqlDataSourceFilteringEventArgs.cs
- LiteralTextContainerControlBuilder.cs
- FixUpCollection.cs
- DecoderReplacementFallback.cs
- DataExpression.cs
- DataRelationPropertyDescriptor.cs
- SafeProcessHandle.cs
- BitmapEffectInputConnector.cs
- RemotingException.cs
- WebServiceBindingAttribute.cs
- QueryContext.cs
- LinqDataSourceUpdateEventArgs.cs
- UserCancellationException.cs
- QueryAccessibilityHelpEvent.cs
- FlowDocumentFormatter.cs
- ReaderWriterLockSlim.cs
- TypeUsage.cs
- SchemaTableColumn.cs
- WebHeaderCollection.cs
- smtppermission.cs
- Enum.cs
- ExtenderProvidedPropertyAttribute.cs
- ColorBlend.cs
- DbLambda.cs
- IconEditor.cs
- WorkflowMessageEventHandler.cs
- BitmapFrameEncode.cs
- OperandQuery.cs
- ReaderWriterLock.cs
- SupportsEventValidationAttribute.cs
- XmlChoiceIdentifierAttribute.cs
- QueryAsyncResult.cs
- WebPartConnectionsCloseVerb.cs
- IconBitmapDecoder.cs
- HtmlEmptyTagControlBuilder.cs
- QilStrConcat.cs
- ResolveDuplexCD1AsyncResult.cs
- EntitySqlQueryBuilder.cs
- WebSysDisplayNameAttribute.cs
- NetMsmqSecurity.cs
- BStrWrapper.cs
- QuestionEventArgs.cs
- TypeKeyValue.cs
- RichTextBox.cs
- GacUtil.cs
- SqlBuilder.cs
- IntSecurity.cs
- WeakEventTable.cs
- DecimalAverageAggregationOperator.cs
- DocumentXmlWriter.cs
- MatrixUtil.cs
- DbConnectionPoolGroupProviderInfo.cs
- MasterPage.cs
- SurrogateEncoder.cs
- SqlFlattener.cs
- nulltextnavigator.cs