Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / DataBindingHandlerAttribute.cs / 1 / DataBindingHandlerAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.ComponentModel; using System.Globalization; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Class)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class DataBindingHandlerAttribute : Attribute { private string _typeName; ////// public static readonly DataBindingHandlerAttribute Default = new DataBindingHandlerAttribute(); ////// public DataBindingHandlerAttribute() { _typeName = String.Empty; } ////// public DataBindingHandlerAttribute(Type type) { _typeName = type.AssemblyQualifiedName; } ////// public DataBindingHandlerAttribute(string typeName) { _typeName = typeName; } ////// public string HandlerTypeName { get { return (_typeName != null ? _typeName : String.Empty); } } ///public override bool Equals(object obj) { if (obj == this) { return true; } DataBindingHandlerAttribute other = obj as DataBindingHandlerAttribute; if (other != null) { return (String.Compare(HandlerTypeName, other.HandlerTypeName, StringComparison.Ordinal) == 0); } return false; } /// public override int GetHashCode() { return HandlerTypeName.GetHashCode(); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StrokeNodeData.cs
- BooleanAnimationUsingKeyFrames.cs
- EntityContainerEmitter.cs
- CollectionBuilder.cs
- ObjectHandle.cs
- SystemBrushes.cs
- AlignmentXValidation.cs
- DispatcherHookEventArgs.cs
- SourceSwitch.cs
- TagNameToTypeMapper.cs
- AutoResetEvent.cs
- UserControlAutomationPeer.cs
- Popup.cs
- RequestCacheManager.cs
- ExtensionSimplifierMarkupObject.cs
- ToolStripComboBox.cs
- TextInfo.cs
- SapiRecognizer.cs
- PeerNameResolver.cs
- ClassValidator.cs
- DataGridViewRowCollection.cs
- FormsAuthenticationModule.cs
- PropertyDescriptorGridEntry.cs
- RangeValidator.cs
- PersistenceProvider.cs
- SkinBuilder.cs
- TraceFilter.cs
- MultitargetingHelpers.cs
- XmlDataFileEditor.cs
- ReflectionServiceProvider.cs
- Stream.cs
- TimeZoneNotFoundException.cs
- CqlBlock.cs
- SetStoryboardSpeedRatio.cs
- TextBoxRenderer.cs
- Timer.cs
- ImageBrush.cs
- WsdlBuildProvider.cs
- PartitionerQueryOperator.cs
- CheckBox.cs
- StringBuilder.cs
- PeerNodeTraceRecord.cs
- TimelineCollection.cs
- BackStopAuthenticationModule.cs
- WindowsUpDown.cs
- HandleCollector.cs
- AudioSignalProblemOccurredEventArgs.cs
- ArrayListCollectionBase.cs
- DesignTimeTemplateParser.cs
- CodeMethodInvokeExpression.cs
- TransformCollection.cs
- DataGridViewImageColumn.cs
- HostedNamedPipeTransportManager.cs
- ManagementScope.cs
- HorizontalAlignConverter.cs
- MsmqElementBase.cs
- BindingContext.cs
- ProxyManager.cs
- TableLayoutPanel.cs
- Transform.cs
- PreparingEnlistment.cs
- XmlSchemaAppInfo.cs
- ChtmlCalendarAdapter.cs
- UIHelper.cs
- BindingListCollectionView.cs
- QuaternionRotation3D.cs
- SecurityTokenProvider.cs
- TextFormatterContext.cs
- XPathAxisIterator.cs
- HijriCalendar.cs
- DataViewManagerListItemTypeDescriptor.cs
- UnsafeNativeMethods.cs
- ChangeToolStripParentVerb.cs
- _SslStream.cs
- UIElementParaClient.cs
- EpmSyndicationContentDeSerializer.cs
- _RequestCacheProtocol.cs
- ObjectIDGenerator.cs
- DetailsViewCommandEventArgs.cs
- OdbcConnectionOpen.cs
- SmiEventSink_Default.cs
- CharAnimationUsingKeyFrames.cs
- WebResponse.cs
- TabletDevice.cs
- XmlSchemaImport.cs
- DataRecordInfo.cs
- ContractDescription.cs
- figurelengthconverter.cs
- DoubleLinkList.cs
- DataRow.cs
- SafeThemeHandle.cs
- WindowsNonControl.cs
- UnsafeNativeMethods.cs
- DashStyle.cs
- BitmapEffectDrawingContextWalker.cs
- TypedRowGenerator.cs
- PtsCache.cs
- ComplexBindingPropertiesAttribute.cs
- CompilerResults.cs
- ServiceMetadataBehavior.cs