Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. // //----------------------------------------------------------------------------- /* */ 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Selection.cs
- DataBindingExpressionBuilder.cs
- QuaternionRotation3D.cs
- SortDescription.cs
- RelationshipSet.cs
- WorkflowWebService.cs
- SynchronizationLockException.cs
- DelayedRegex.cs
- GregorianCalendarHelper.cs
- DependencyPropertyValueSerializer.cs
- FrameSecurityDescriptor.cs
- SourceFileInfo.cs
- Range.cs
- ConsoleEntryPoint.cs
- TextFormatterImp.cs
- DesignerSerializerAttribute.cs
- Console.cs
- FormatConvertedBitmap.cs
- SharedPerformanceCounter.cs
- RtfControlWordInfo.cs
- dsa.cs
- DbBuffer.cs
- HtmlWindow.cs
- WebServiceAttribute.cs
- XmlSchemaSimpleTypeRestriction.cs
- AuthenticationServiceManager.cs
- InfiniteTimeSpanConverter.cs
- DesignColumn.cs
- ExcCanonicalXml.cs
- ExceptionValidationRule.cs
- LinearGradientBrush.cs
- EntryWrittenEventArgs.cs
- ObjectListSelectEventArgs.cs
- NavigationProgressEventArgs.cs
- NameSpaceEvent.cs
- ParseChildrenAsPropertiesAttribute.cs
- QualificationDataItem.cs
- LookupBindingPropertiesAttribute.cs
- PerfCounterSection.cs
- _KerberosClient.cs
- HGlobalSafeHandle.cs
- EntryWrittenEventArgs.cs
- ListControlBoundActionList.cs
- SmtpFailedRecipientsException.cs
- CryptoKeySecurity.cs
- ConfigXmlText.cs
- HwndTarget.cs
- AttributeEmitter.cs
- ProxyWebPartConnectionCollection.cs
- TagPrefixAttribute.cs
- MetabaseServerConfig.cs
- Vector3D.cs
- CodeDomLocalizationProvider.cs
- Nullable.cs
- ExpressionEditorAttribute.cs
- ComponentResourceKeyConverter.cs
- SecurityIdentifierConverter.cs
- Transform3D.cs
- SyndicationSerializer.cs
- OutOfProcStateClientManager.cs
- StoragePropertyMapping.cs
- ToggleProviderWrapper.cs
- MbpInfo.cs
- SiteIdentityPermission.cs
- StyleSheetComponentEditor.cs
- ObjectConverter.cs
- PolyQuadraticBezierSegment.cs
- brushes.cs
- QueryAccessibilityHelpEvent.cs
- GeneralTransformGroup.cs
- ColumnMap.cs
- XmlQualifiedName.cs
- CompoundFileStorageReference.cs
- PropertyInfoSet.cs
- TextServicesCompartmentEventSink.cs
- ComplexTypeEmitter.cs
- DetailsViewUpdatedEventArgs.cs
- Hashtable.cs
- StringToken.cs
- NegationPusher.cs
- SqlConnectionHelper.cs
- XmlSchemas.cs
- URLIdentityPermission.cs
- TextServicesLoader.cs
- WindowsSlider.cs
- FileDialogPermission.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- InteropExecutor.cs
- VectorAnimationUsingKeyFrames.cs
- TypeDescriptionProviderAttribute.cs
- QilReference.cs
- StringAttributeCollection.cs
- GroupItem.cs
- TimeSpanStorage.cs
- UnionExpr.cs
- HtmlLiteralTextAdapter.cs
- DesignerResources.cs
- PersistenceMetadataNamespace.cs
- UrlEncodedParameterWriter.cs
- RepeatButton.cs