Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ParentQuery.cs
- EntityContainer.cs
- StickyNote.cs
- SchemaElementLookUpTable.cs
- ExtensionsSection.cs
- HierarchicalDataBoundControl.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- ListView.cs
- Win32.cs
- XmlBoundElement.cs
- BinaryParser.cs
- HostingPreferredMapPath.cs
- Regex.cs
- NonParentingControl.cs
- TemplateBamlRecordReader.cs
- ToolStripOverflow.cs
- BrushValueSerializer.cs
- FormsAuthenticationEventArgs.cs
- TableCellCollection.cs
- ExpressionVisitorHelpers.cs
- TraceEventCache.cs
- SystemGatewayIPAddressInformation.cs
- AutomationProperties.cs
- TypeExtension.cs
- DiscoveryOperationContext.cs
- CustomAttributeBuilder.cs
- WindowsFormsSynchronizationContext.cs
- FileClassifier.cs
- ThemeDirectoryCompiler.cs
- WindowsRegion.cs
- PropertyTab.cs
- HttpTransportBindingElement.cs
- RC2CryptoServiceProvider.cs
- StreamDocument.cs
- IssuedTokensHeader.cs
- UniqueIdentifierService.cs
- OutputScopeManager.cs
- SecurityException.cs
- DiagnosticTraceSource.cs
- ToolStripCollectionEditor.cs
- XDRSchema.cs
- FrameworkReadOnlyPropertyMetadata.cs
- ControlHelper.cs
- FlowLayout.cs
- MimeReflector.cs
- DataSourceSelectArguments.cs
- ListViewInsertEventArgs.cs
- DrawTreeNodeEventArgs.cs
- TransactionTable.cs
- SerializationSectionGroup.cs
- RangeValueProviderWrapper.cs
- CachingHintValidation.cs
- SapiInterop.cs
- _SslStream.cs
- regiisutil.cs
- XmlnsCache.cs
- DbParameterHelper.cs
- MemberAccessException.cs
- GeneralTransform3DCollection.cs
- TransformerInfo.cs
- HttpModuleActionCollection.cs
- StylusCaptureWithinProperty.cs
- ProfileGroupSettings.cs
- QueryInterceptorAttribute.cs
- FormViewInsertEventArgs.cs
- RuleAttributes.cs
- XmlSchemaSimpleType.cs
- TextFindEngine.cs
- XmlWriterSettings.cs
- TextFormatterHost.cs
- RouteUrlExpressionBuilder.cs
- MenuItemBindingCollection.cs
- EdmToObjectNamespaceMap.cs
- WorkflowValidationFailedException.cs
- ThemeableAttribute.cs
- DesignerActionService.cs
- GraphicsContext.cs
- EmptyEnumerable.cs
- XmlSerializationGeneratedCode.cs
- MouseButtonEventArgs.cs
- XmlMtomReader.cs
- UnionCodeGroup.cs
- DataError.cs
- LineGeometry.cs
- LicenseContext.cs
- ConstructorExpr.cs
- AssemblyUtil.cs
- BuildProvider.cs
- EntityTypeEmitter.cs
- CombinedGeometry.cs
- FormattedText.cs
- ToolStripInSituService.cs
- ListenerConnectionDemuxer.cs
- ValueProviderWrapper.cs
- GradientSpreadMethodValidation.cs
- StateMachineSubscriptionManager.cs
- InlineObject.cs
- Int32Storage.cs
- CompressEmulationStream.cs
- Pens.cs