Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / HtmlControlPersistable.cs / 1305376 / HtmlControlPersistable.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.ComponentModel; using System; [AttributeUsage(AttributeTargets.Property)] internal sealed class HtmlControlPersistableAttribute : Attribute { internal static readonly HtmlControlPersistableAttribute Yes = new HtmlControlPersistableAttribute(true); internal static readonly HtmlControlPersistableAttribute No = new HtmlControlPersistableAttribute(false); internal static readonly HtmlControlPersistableAttribute Default = Yes; private bool persistable = true; internal HtmlControlPersistableAttribute(bool persistable) { this.persistable = persistable; } internal bool HtmlControlPersistable { get { return persistable; } } public override bool Equals(object obj) { if (obj == this) { return true; } HtmlControlPersistableAttribute other = obj as HtmlControlPersistableAttribute; return (other != null) && other.HtmlControlPersistable == persistable; } public override int GetHashCode() { return persistable.GetHashCode(); } 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
- PersistenceProviderDirectory.cs
- SessionEndingEventArgs.cs
- ScriptingProfileServiceSection.cs
- NameValuePair.cs
- PieceDirectory.cs
- TableStyle.cs
- ObjectStorage.cs
- SQLSingleStorage.cs
- ISAPIWorkerRequest.cs
- SqlRowUpdatedEvent.cs
- ComponentConverter.cs
- cryptoapiTransform.cs
- GeneralTransform3DTo2D.cs
- MetadataUtilsSmi.cs
- DataGridViewColumnConverter.cs
- ToolStripDropDownClosedEventArgs.cs
- SafeCryptContextHandle.cs
- SplitterPanel.cs
- SelectionGlyphBase.cs
- UnsafePeerToPeerMethods.cs
- TableCell.cs
- ThemeableAttribute.cs
- RootProfilePropertySettingsCollection.cs
- TextStore.cs
- Converter.cs
- MultiTrigger.cs
- DefaultValueConverter.cs
- SmtpCommands.cs
- FontFamilyValueSerializer.cs
- ScrollChrome.cs
- TreeViewImageIndexConverter.cs
- XmlSchemaImport.cs
- XmlCodeExporter.cs
- FunctionQuery.cs
- DataContext.cs
- RewritingSimplifier.cs
- datacache.cs
- TextBox.cs
- shaperfactoryquerycacheentry.cs
- DataGridColumnFloatingHeader.cs
- Light.cs
- ObsoleteAttribute.cs
- AbstractSvcMapFileLoader.cs
- StyleCollection.cs
- OleDbDataReader.cs
- ReadOnlyDataSource.cs
- SQlBooleanStorage.cs
- ContentIterators.cs
- DeviceContext2.cs
- Event.cs
- TextTreeInsertElementUndoUnit.cs
- TripleDESCryptoServiceProvider.cs
- FilterableAttribute.cs
- StrokeNodeEnumerator.cs
- ValueConversionAttribute.cs
- TargetParameterCountException.cs
- URLAttribute.cs
- DynamicPropertyReader.cs
- BitmapCacheBrush.cs
- DataSourceHelper.cs
- HMACMD5.cs
- LayoutDump.cs
- CharacterHit.cs
- FormCollection.cs
- ManagedWndProcTracker.cs
- PreservationFileReader.cs
- PropertyEmitterBase.cs
- DataGridState.cs
- KnownTypes.cs
- Converter.cs
- PolicyChain.cs
- Mapping.cs
- EntityWrapperFactory.cs
- TypeDescriptorContext.cs
- GroupDescription.cs
- ResourceDescriptionAttribute.cs
- NodeInfo.cs
- TextContainerChangedEventArgs.cs
- PasswordTextContainer.cs
- Selection.cs
- Preprocessor.cs
- PerspectiveCamera.cs
- ButtonFlatAdapter.cs
- DesignerWithHeader.cs
- EncoderFallback.cs
- ParseHttpDate.cs
- ElementNotEnabledException.cs
- PropertyInformation.cs
- NativeMethods.cs
- ProfilePropertySettings.cs
- Content.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- codemethodreferenceexpression.cs
- FlowDocumentReader.cs
- NativeWindow.cs
- _IPv6Address.cs
- AcceleratedTokenProvider.cs
- GridViewDeletedEventArgs.cs
- TypeConverterAttribute.cs
- OdbcDataReader.cs