Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / FilterableAttribute.cs / 1305376 / 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; ////// [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. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI { using System; using System.Collections; using System.ComponentModel; using System.Security.Permissions; ////// [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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- LocationEnvironment.cs
- HttpFormatExtensions.cs
- RootBrowserWindowProxy.cs
- DataFieldCollectionEditor.cs
- RegexInterpreter.cs
- DataPagerFieldCommandEventArgs.cs
- Exception.cs
- CellConstantDomain.cs
- GraphicsState.cs
- SubMenuStyle.cs
- FileChangesMonitor.cs
- XmlSchemaSimpleContentExtension.cs
- WaitForChangedResult.cs
- QueryStringHandler.cs
- WorkflowHostingResponseContext.cs
- QueryResults.cs
- RawUIStateInputReport.cs
- PaginationProgressEventArgs.cs
- RoutedEventValueSerializer.cs
- UnionCodeGroup.cs
- MultipartIdentifier.cs
- TextTreeInsertElementUndoUnit.cs
- AvTrace.cs
- SmiEventSink.cs
- SafeHandle.cs
- Size3D.cs
- FieldNameLookup.cs
- SpeechRecognizer.cs
- NotCondition.cs
- DataGridViewTextBoxEditingControl.cs
- EdmPropertyAttribute.cs
- CollectionBase.cs
- InstanceLockedException.cs
- UrlAuthFailedErrorFormatter.cs
- TableParagraph.cs
- WebPart.cs
- GreaterThanOrEqual.cs
- AsyncOperationManager.cs
- _LocalDataStore.cs
- ErrorFormatter.cs
- TrackingDataItemValue.cs
- Point3D.cs
- ResourceSetExpression.cs
- DummyDataSource.cs
- COM2ColorConverter.cs
- ConstructorExpr.cs
- Wizard.cs
- HtmlFormWrapper.cs
- PageCodeDomTreeGenerator.cs
- StringConcat.cs
- QueryStringParameter.cs
- ResourcesChangeInfo.cs
- Privilege.cs
- AudioSignalProblemOccurredEventArgs.cs
- versioninfo.cs
- MatrixAnimationUsingKeyFrames.cs
- DecimalAnimation.cs
- ClientOptions.cs
- EnumBuilder.cs
- KeyEvent.cs
- DataPagerField.cs
- PropertyPath.cs
- Primitive.cs
- HandlerBase.cs
- UnknownBitmapDecoder.cs
- ButtonChrome.cs
- Privilege.cs
- BezierSegment.cs
- Lasso.cs
- ContextMarshalException.cs
- UmAlQuraCalendar.cs
- SystemIcons.cs
- WebServiceFaultDesigner.cs
- Parser.cs
- HtmlGenericControl.cs
- XmlSchemaAll.cs
- Claim.cs
- StrokeDescriptor.cs
- CultureSpecificCharacterBufferRange.cs
- FirstMatchCodeGroup.cs
- ProjectionCamera.cs
- DocumentOrderQuery.cs
- Module.cs
- Single.cs
- ToolStripContainer.cs
- FlowLayoutPanel.cs
- ImportCatalogPart.cs
- TextRunTypographyProperties.cs
- WebPartsSection.cs
- LayeredChannelListener.cs
- ComponentEditorForm.cs
- SoapFormatterSinks.cs
- FrugalMap.cs
- SelectedPathEditor.cs
- ListViewGroupConverter.cs
- namescope.cs
- NameSpaceEvent.cs
- ConstraintConverter.cs
- DesignTimeTemplateParser.cs
- TextDecoration.cs