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 / ThemeableAttribute.cs / 2 / ThemeableAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI { using System; using System.Collections; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AttributeUsage(AttributeTargets.Property | AttributeTargets.Class)] public sealed class ThemeableAttribute : Attribute { ////// /// /// public static readonly ThemeableAttribute Yes = new ThemeableAttribute(true); ////// /// /// public static readonly ThemeableAttribute No = new ThemeableAttribute(false); ////// /// /// public static readonly ThemeableAttribute Default = Yes; private bool _themeable = false; private static Hashtable _themeableTypes; static ThemeableAttribute() { // Create a synchronized wrapper _themeableTypes = Hashtable.Synchronized(new Hashtable()); } ////// /// public ThemeableAttribute(bool themeable) { _themeable = themeable; } ////// public bool Themeable { get { return _themeable; } } ///Indicates if the property is themeable. ///public override bool Equals(object obj) { if (obj == this) { return true; } ThemeableAttribute other = obj as ThemeableAttribute; return (other != null) && (other.Themeable == _themeable); } /// public override int GetHashCode() { return _themeable.GetHashCode(); } /// public override bool IsDefaultAttribute() { return this.Equals(Default); } public static bool IsObjectThemeable(Object instance) { if (instance == null) throw new ArgumentNullException("instance"); return IsTypeThemeable(instance.GetType()); } public static bool IsTypeThemeable(Type type) { if (type == null) throw new ArgumentNullException("type"); object result = _themeableTypes[type]; if (result != null) { return (bool)result; } //System.ComponentModel.AttributeCollection attrs = TypeDescriptor.GetAttributes(type); //ThemeableAttribute attr = (ThemeableAttribute)attrs[typeof(ThemeableAttribute)]; ThemeableAttribute attr = Attribute.GetCustomAttribute(type, typeof(ThemeableAttribute)) as ThemeableAttribute; result = (attr != null) && attr.Themeable; _themeableTypes[type] = result; return (bool)result; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI { using System; using System.Collections; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AttributeUsage(AttributeTargets.Property | AttributeTargets.Class)] public sealed class ThemeableAttribute : Attribute { ////// /// /// public static readonly ThemeableAttribute Yes = new ThemeableAttribute(true); ////// /// /// public static readonly ThemeableAttribute No = new ThemeableAttribute(false); ////// /// /// public static readonly ThemeableAttribute Default = Yes; private bool _themeable = false; private static Hashtable _themeableTypes; static ThemeableAttribute() { // Create a synchronized wrapper _themeableTypes = Hashtable.Synchronized(new Hashtable()); } ////// /// public ThemeableAttribute(bool themeable) { _themeable = themeable; } ////// public bool Themeable { get { return _themeable; } } ///Indicates if the property is themeable. ///public override bool Equals(object obj) { if (obj == this) { return true; } ThemeableAttribute other = obj as ThemeableAttribute; return (other != null) && (other.Themeable == _themeable); } /// public override int GetHashCode() { return _themeable.GetHashCode(); } /// public override bool IsDefaultAttribute() { return this.Equals(Default); } public static bool IsObjectThemeable(Object instance) { if (instance == null) throw new ArgumentNullException("instance"); return IsTypeThemeable(instance.GetType()); } public static bool IsTypeThemeable(Type type) { if (type == null) throw new ArgumentNullException("type"); object result = _themeableTypes[type]; if (result != null) { return (bool)result; } //System.ComponentModel.AttributeCollection attrs = TypeDescriptor.GetAttributes(type); //ThemeableAttribute attr = (ThemeableAttribute)attrs[typeof(ThemeableAttribute)]; ThemeableAttribute attr = Attribute.GetCustomAttribute(type, typeof(ThemeableAttribute)) as ThemeableAttribute; result = (attr != null) && attr.Themeable; _themeableTypes[type] = result; return (bool)result; } } } // 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
- TdsParserStateObject.cs
- SiteMapNodeCollection.cs
- ApplicationBuildProvider.cs
- Int64AnimationBase.cs
- SimpleMailWebEventProvider.cs
- HttpProcessUtility.cs
- Content.cs
- BoolExpr.cs
- ClientRolePrincipal.cs
- FormsIdentity.cs
- PermissionListSet.cs
- DiscoveryVersion.cs
- ObjectSecurity.cs
- MissingFieldException.cs
- UrlMappingsModule.cs
- GlyphRun.cs
- DrawingBrush.cs
- XslTransformFileEditor.cs
- NameValueFileSectionHandler.cs
- Win32PrintDialog.cs
- ProxyAttribute.cs
- ComponentFactoryHelpers.cs
- PointAnimationUsingPath.cs
- CryptoProvider.cs
- ConfigurationProperty.cs
- ThemeableAttribute.cs
- ReadOnlyAttribute.cs
- StrongName.cs
- ListenerSessionConnection.cs
- codemethodreferenceexpression.cs
- ToolStripLocationCancelEventArgs.cs
- SubclassTypeValidator.cs
- XmlAggregates.cs
- BaseParagraph.cs
- QueryResponse.cs
- CaseStatementSlot.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- MsmqIntegrationProcessProtocolHandler.cs
- StickyNote.cs
- _FtpControlStream.cs
- SqlSelectStatement.cs
- LinkedList.cs
- ObservableCollectionDefaultValueFactory.cs
- IdentityNotMappedException.cs
- SQlBooleanStorage.cs
- CatalogZoneBase.cs
- XmlNodeChangedEventArgs.cs
- PrintingPermissionAttribute.cs
- KeyTime.cs
- DataGridViewSortCompareEventArgs.cs
- DictionaryKeyPropertyAttribute.cs
- SecUtil.cs
- AdapterUtil.cs
- ExecutionContext.cs
- MessageDecoder.cs
- Separator.cs
- TagPrefixAttribute.cs
- ImageMap.cs
- ConfigurationValue.cs
- RepeaterCommandEventArgs.cs
- PropertyItem.cs
- PersianCalendar.cs
- ExternalException.cs
- baseaxisquery.cs
- ImageDrawing.cs
- ProcessProtocolHandler.cs
- KeyValueSerializer.cs
- CodeDefaultValueExpression.cs
- basecomparevalidator.cs
- AnnotationService.cs
- ModelUtilities.cs
- UserPreferenceChangingEventArgs.cs
- EventDrivenDesigner.cs
- ToolStripItemClickedEventArgs.cs
- ToggleButton.cs
- FocusWithinProperty.cs
- SqlServer2KCompatibilityCheck.cs
- TemplatePartAttribute.cs
- ClientConfigurationSystem.cs
- ParallelQuery.cs
- MarkupCompiler.cs
- WebSysDefaultValueAttribute.cs
- AuthenticationModuleElementCollection.cs
- GridEntry.cs
- XamlInterfaces.cs
- VSWCFServiceContractGenerator.cs
- EmptyCollection.cs
- FrameworkElementFactoryMarkupObject.cs
- TypeBuilder.cs
- TreeBuilder.cs
- MsmqInputChannelListenerBase.cs
- BlockUIContainer.cs
- DesignerSerializationOptionsAttribute.cs
- TextTreeRootTextBlock.cs
- Crc32.cs
- ConsumerConnectionPoint.cs
- DbProviderFactory.cs
- DrawingBrush.cs
- nulltextcontainer.cs
- AccessDataSourceView.cs