Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / DataBinding.cs / 1 / DataBinding.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI { using System; using System.ComponentModel; using System.ComponentModel.Design; using System.Data; using System.Globalization; using System.Security.Permissions; using System.Web.Util; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class DataBinding { private string propertyName; private Type propertyType; private string expression; ///Enables RAD designers to create data binding expressions /// at design time. This class cannot be inherited. ////// public DataBinding(string propertyName, Type propertyType, string expression) { this.propertyName = propertyName; this.propertyType = propertyType; this.expression = expression; } ///Initializes a new instance of the ///class. /// public string Expression { get { return expression; } set { Debug.Assert((value != null) && (value.Length != 0), "Invalid expression"); expression = value; } } ///Indicates the data binding expression to be evaluated. ////// public string PropertyName { get { return propertyName; } } ///Indicates the name of the property that is to be data bound against. This /// property is read-only. ////// public Type PropertyType { get { return propertyType; } } ///Indicates the type of the data bound property. This property is /// read-only. ////// DataBinding objects are placed in a hashtable representing the collection /// of bindings on a control. There can only be one binding/property, so /// the hashcode computation should match the Equals implementation and only /// take the property name into account. /// public override int GetHashCode() { return propertyName.ToLower(CultureInfo.InvariantCulture).GetHashCode(); } ////// public override bool Equals(object obj) { if ((obj != null) && (obj is DataBinding)) { DataBinding binding = (DataBinding)obj; return StringUtil.EqualsIgnoreCase(propertyName, binding.PropertyName); } return false; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SafeMILHandle.cs
- TagPrefixAttribute.cs
- PtsCache.cs
- TreeNode.cs
- Point4DValueSerializer.cs
- ConfigPathUtility.cs
- ErrorFormatterPage.cs
- ColorTranslator.cs
- SocketAddress.cs
- PropagatorResult.cs
- InvalidCommandTreeException.cs
- ContainerUIElement3D.cs
- PenContext.cs
- BaseDataListComponentEditor.cs
- OverrideMode.cs
- ObjectViewQueryResultData.cs
- DoubleAnimationUsingPath.cs
- TypographyProperties.cs
- XmlResolver.cs
- UnionExpr.cs
- NamedPipeDuplicateContext.cs
- DbgCompiler.cs
- ContainerParagraph.cs
- UrlPropertyAttribute.cs
- ResXResourceReader.cs
- DataGridHeadersVisibilityToVisibilityConverter.cs
- AsyncParams.cs
- ClientTarget.cs
- Evaluator.cs
- StringConverter.cs
- RepeatInfo.cs
- EventTrigger.cs
- LayoutTable.cs
- AtlasWeb.Designer.cs
- HijriCalendar.cs
- HtmlInputCheckBox.cs
- TemplateNodeContextMenu.cs
- RunClient.cs
- XamlPathDataSerializer.cs
- BulletedList.cs
- JoinCqlBlock.cs
- PrintDialog.cs
- IsolatedStorageFile.cs
- MessageSecurityOverHttpElement.cs
- XmlQualifiedName.cs
- RuleElement.cs
- StylusPoint.cs
- XhtmlBasicLiteralTextAdapter.cs
- PagePropertiesChangingEventArgs.cs
- WinEventQueueItem.cs
- OpenTypeCommon.cs
- FilteredReadOnlyMetadataCollection.cs
- WebBrowserSiteBase.cs
- AnnouncementClient.cs
- XsltArgumentList.cs
- X509SecurityTokenAuthenticator.cs
- Debug.cs
- TextEditorParagraphs.cs
- PageParserFilter.cs
- ControlBuilderAttribute.cs
- DataServiceRequest.cs
- Int32Rect.cs
- COM2IProvidePropertyBuilderHandler.cs
- Errors.cs
- MetadataItemEmitter.cs
- BuildProvidersCompiler.cs
- DefaultExpressionVisitor.cs
- X509KeyIdentifierClauseType.cs
- SymmetricAlgorithm.cs
- DetailsView.cs
- PrintControllerWithStatusDialog.cs
- HandlerMappingMemo.cs
- WindowsSlider.cs
- SystemIPv6InterfaceProperties.cs
- DragEventArgs.cs
- RectValueSerializer.cs
- GeneratedContractType.cs
- HuffCodec.cs
- ApplicationException.cs
- NativeMethods.cs
- UnauthorizedWebPart.cs
- WebException.cs
- WindowsListViewGroupHelper.cs
- UriScheme.cs
- WorkflowWebHostingModule.cs
- IIS7UserPrincipal.cs
- InitializationEventAttribute.cs
- MatcherBuilder.cs
- AssemblyUtil.cs
- DataFormats.cs
- _SslState.cs
- SystemIPv6InterfaceProperties.cs
- PageParserFilter.cs
- StreamWriter.cs
- SQLDateTime.cs
- WebRequestModuleElementCollection.cs
- DependencyPropertyKind.cs
- SmiSettersStream.cs
- BooleanExpr.cs
- StructuredTypeEmitter.cs