Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / DataBindingHandlerAttribute.cs / 2 / 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(); } } } // 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
- PeerInvitationResponse.cs
- translator.cs
- NetworkInformationException.cs
- AssemblyBuilder.cs
- ChannelManager.cs
- DictionaryEntry.cs
- NavigationWindowAutomationPeer.cs
- SqlDataRecord.cs
- ExtendedProperty.cs
- DesignTimeXamlWriter.cs
- ParallelTimeline.cs
- IsolatedStorageFilePermission.cs
- DigestTraceRecordHelper.cs
- DesignerActionHeaderItem.cs
- XmlMemberMapping.cs
- TableStyle.cs
- XmlBinaryReader.cs
- GroupPartitionExpr.cs
- DataRecordObjectView.cs
- TCPListener.cs
- ThreadPool.cs
- ObfuscateAssemblyAttribute.cs
- OpacityConverter.cs
- TemplatePartAttribute.cs
- BinaryParser.cs
- VirtualPathProvider.cs
- PersonalizationDictionary.cs
- SkipQueryOptionExpression.cs
- ZoneIdentityPermission.cs
- RoutedEvent.cs
- TextTreeNode.cs
- RangeBase.cs
- CookieHandler.cs
- MexHttpsBindingCollectionElement.cs
- DBSchemaTable.cs
- MarkupWriter.cs
- NullRuntimeConfig.cs
- Registry.cs
- OAVariantLib.cs
- DefinitionUpdate.cs
- EventMemberCodeDomSerializer.cs
- MenuTracker.cs
- ViewStateException.cs
- WaitHandleCannotBeOpenedException.cs
- ViewStateException.cs
- ClaimComparer.cs
- _DisconnectOverlappedAsyncResult.cs
- TemplateBindingExpression.cs
- PhysicalAddress.cs
- PackagePartCollection.cs
- ConstNode.cs
- RemoteTokenFactory.cs
- SamlAssertion.cs
- DoubleLinkList.cs
- TypeSystemProvider.cs
- processwaithandle.cs
- ListViewItem.cs
- FullTextLine.cs
- _NestedMultipleAsyncResult.cs
- SendParametersContent.cs
- FileSecurity.cs
- BinHexEncoder.cs
- Timer.cs
- LocalizedNameDescriptionPair.cs
- GridViewItemAutomationPeer.cs
- IfAction.cs
- BindValidator.cs
- ProcessingInstructionAction.cs
- Decoder.cs
- DbConnectionOptions.cs
- HWStack.cs
- FontSizeConverter.cs
- ButtonColumn.cs
- CacheEntry.cs
- SymbolMethod.cs
- HashHelpers.cs
- EntityTypeEmitter.cs
- DataControlCommands.cs
- HitTestParameters.cs
- Missing.cs
- ServiceEndpoint.cs
- TypeConverterMarkupExtension.cs
- CommandBinding.cs
- ContainerUIElement3D.cs
- Point3DKeyFrameCollection.cs
- LocatorPartList.cs
- UnaryNode.cs
- DataPager.cs
- Validator.cs
- XhtmlBasicPhoneCallAdapter.cs
- MetadataCollection.cs
- AsymmetricKeyExchangeFormatter.cs
- ObjectDataSourceMethodEventArgs.cs
- Win32PrintDialog.cs
- DataPagerFieldItem.cs
- RenderData.cs
- Annotation.cs
- CodeTypeDelegate.cs
- NativeWindow.cs
- Site.cs