Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / FilterableAttribute.cs / 1 / FilterableAttribute.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 FilterableAttribute : Attribute { ////// /// /// public static readonly FilterableAttribute Yes = new FilterableAttribute(true); ////// /// /// public static readonly FilterableAttribute No = new FilterableAttribute(false); ////// /// /// public static readonly FilterableAttribute Default = Yes; private bool _filterable = false; private static Hashtable _filterableTypes; static FilterableAttribute() { // Create a synchronized wrapper _filterableTypes = Hashtable.Synchronized(new Hashtable()); } ////// /// public FilterableAttribute(bool filterable) { _filterable = filterable; } ////// public bool Filterable { get { return _filterable; } } ///Indicates if the property is Filterable. ///public override bool Equals(object obj) { if (obj == this) { return true; } FilterableAttribute other = obj as FilterableAttribute; return (other != null) && (other.Filterable == _filterable); } /// public override int GetHashCode() { return _filterable.GetHashCode(); } /// public override bool IsDefaultAttribute() { return this.Equals(Default); } public static bool IsObjectFilterable(Object instance) { if (instance == null) throw new ArgumentNullException("instance"); return IsTypeFilterable(instance.GetType()); } public static bool IsPropertyFilterable(PropertyDescriptor propertyDescriptor) { FilterableAttribute filterableAttr = (FilterableAttribute)propertyDescriptor.Attributes[typeof(FilterableAttribute)]; if (filterableAttr != null) { return filterableAttr.Filterable; } return true; } public static bool IsTypeFilterable(Type type) { if (type == null) throw new ArgumentNullException("type"); object result = _filterableTypes[type]; if (result != null) { return (bool)result; } System.ComponentModel.AttributeCollection attrs = TypeDescriptor.GetAttributes(type); FilterableAttribute attr = (FilterableAttribute)attrs[typeof(FilterableAttribute)]; result = (attr != null) && attr.Filterable; _filterableTypes[type] = result; return (bool)result; } } } // 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
- DictionaryEntry.cs
- ViewStateModeByIdAttribute.cs
- DefaultSection.cs
- TextRange.cs
- WebPartDesigner.cs
- BehaviorService.cs
- SqlUDTStorage.cs
- FormsAuthenticationEventArgs.cs
- JumpPath.cs
- UnescapedXmlDiagnosticData.cs
- HostingEnvironmentWrapper.cs
- TableLayoutCellPaintEventArgs.cs
- ImageSource.cs
- DialogDivider.cs
- ColorTranslator.cs
- CursorConverter.cs
- ProvideValueServiceProvider.cs
- Oid.cs
- SoapClientProtocol.cs
- GeneralTransform3D.cs
- TableSectionStyle.cs
- XmlReflectionMember.cs
- MetadataArtifactLoaderCompositeResource.cs
- HelpProvider.cs
- TimeSpanValidatorAttribute.cs
- DependencyProperty.cs
- ManagementNamedValueCollection.cs
- DocumentPageHost.cs
- TextDocumentView.cs
- QilScopedVisitor.cs
- XslNumber.cs
- LayoutTable.cs
- DataGridViewRowsRemovedEventArgs.cs
- recordstate.cs
- CodeRemoveEventStatement.cs
- KeyedHashAlgorithm.cs
- XPathDocumentIterator.cs
- BCLDebug.cs
- ExplicitDiscriminatorMap.cs
- TextChange.cs
- HwndHost.cs
- SQLGuidStorage.cs
- DependencyPropertyValueSerializer.cs
- DWriteFactory.cs
- QueryableDataSource.cs
- DrawingContextFlattener.cs
- SvcMapFile.cs
- MobileControlDesigner.cs
- LookupNode.cs
- ComponentEditorPage.cs
- Delegate.cs
- Semaphore.cs
- DictionarySectionHandler.cs
- ExecutionEngineException.cs
- ConfigurationLocation.cs
- EncodingInfo.cs
- CodeExpressionStatement.cs
- XmlSchemaCollection.cs
- TypeElementCollection.cs
- Operand.cs
- Int16Animation.cs
- OverlappedAsyncResult.cs
- BasicCellRelation.cs
- EventWaitHandleSecurity.cs
- IndicFontClient.cs
- PropertyCondition.cs
- BehaviorEditorPart.cs
- DateTimeFormatInfo.cs
- WindowCollection.cs
- MatrixTransform.cs
- EditingCommands.cs
- StaticTextPointer.cs
- DbDataRecord.cs
- NullRuntimeConfig.cs
- SoapCodeExporter.cs
- DocumentPageHost.cs
- SystemIcmpV6Statistics.cs
- MouseActionValueSerializer.cs
- SmiConnection.cs
- CancelRequestedQuery.cs
- BooleanConverter.cs
- DefaultPerformanceCounters.cs
- SplitterEvent.cs
- UndirectedGraph.cs
- CommandBindingCollection.cs
- ProfileService.cs
- SingleAnimationUsingKeyFrames.cs
- SQLDateTimeStorage.cs
- ReliableReplySessionChannel.cs
- UrlMapping.cs
- ZoneIdentityPermission.cs
- RowToFieldTransformer.cs
- RectAnimationBase.cs
- UIElementPropertyUndoUnit.cs
- BaseAddressPrefixFilterElement.cs
- TransformerInfo.cs
- ConfigurationManagerHelperFactory.cs
- OracleException.cs
- HttpContextServiceHost.cs
- TdsEnums.cs