Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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;
///
/// Enables RAD designers to create data binding expressions
/// at design time. This class cannot be inherited.
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public sealed class DataBinding {
private string propertyName;
private Type propertyType;
private string expression;
///
/// Initializes a new instance of the class.
///
public DataBinding(string propertyName, Type propertyType, string expression) {
this.propertyName = propertyName;
this.propertyType = propertyType;
this.expression = expression;
}
///
/// Indicates the data binding expression to be evaluated.
///
public string Expression {
get {
return expression;
}
set {
Debug.Assert((value != null) && (value.Length != 0),
"Invalid expression");
expression = value;
}
}
///
/// Indicates the name of the property that is to be data bound against. This
/// property is read-only.
///
public string PropertyName {
get {
return propertyName;
}
}
///
/// Indicates the type of the data bound property. This property is
/// read-only.
///
public Type PropertyType {
get {
return propertyType;
}
}
///
/// 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;
}
}
}
// 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.ComponentModel;
using System.ComponentModel.Design;
using System.Data;
using System.Globalization;
using System.Security.Permissions;
using System.Web.Util;
///
/// Enables RAD designers to create data binding expressions
/// at design time. This class cannot be inherited.
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public sealed class DataBinding {
private string propertyName;
private Type propertyType;
private string expression;
///
/// Initializes a new instance of the class.
///
public DataBinding(string propertyName, Type propertyType, string expression) {
this.propertyName = propertyName;
this.propertyType = propertyType;
this.expression = expression;
}
///
/// Indicates the data binding expression to be evaluated.
///
public string Expression {
get {
return expression;
}
set {
Debug.Assert((value != null) && (value.Length != 0),
"Invalid expression");
expression = value;
}
}
///
/// Indicates the name of the property that is to be data bound against. This
/// property is read-only.
///
public string PropertyName {
get {
return propertyName;
}
}
///
/// Indicates the type of the data bound property. This property is
/// read-only.
///
public Type PropertyType {
get {
return propertyType;
}
}
///
/// 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;
}
}
}
// 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
- BasicCellRelation.cs
- EventsTab.cs
- WebPartConnectionsCloseVerb.cs
- OdbcConnection.cs
- DetailsViewModeEventArgs.cs
- PrintPageEvent.cs
- BoolExpression.cs
- DiscoveryMessageSequence.cs
- Image.cs
- HttpBufferlessInputStream.cs
- TaskFileService.cs
- GregorianCalendarHelper.cs
- LinqDataSourceContextData.cs
- StateBag.cs
- SequenceQuery.cs
- ActivityValidationServices.cs
- EntitySqlException.cs
- UIAgentRequest.cs
- _AuthenticationState.cs
- DataReceivedEventArgs.cs
- TypeToTreeConverter.cs
- CodeTypeMemberCollection.cs
- HyperLinkField.cs
- ObjectNotFoundException.cs
- CodeGenerator.cs
- WindowsListViewGroupSubsetLink.cs
- FunctionUpdateCommand.cs
- DesignerOptions.cs
- DataSourceSelectArguments.cs
- StoryFragments.cs
- HttpApplicationFactory.cs
- Environment.cs
- MimePart.cs
- FileSystemEventArgs.cs
- Documentation.cs
- HeaderLabel.cs
- WhereQueryOperator.cs
- FixedSOMTextRun.cs
- SmiTypedGetterSetter.cs
- Decimal.cs
- ResXBuildProvider.cs
- RootBrowserWindowProxy.cs
- CodeTypeParameter.cs
- DeclarationUpdate.cs
- AccessViolationException.cs
- SemaphoreFullException.cs
- DoubleCollection.cs
- ProxyWebPartManagerDesigner.cs
- CompatibleIComparer.cs
- XmlEncoding.cs
- DetailsViewDesigner.cs
- SqlFacetAttribute.cs
- SqlDataSourceCommandEventArgs.cs
- ExtensionQuery.cs
- MetaTableHelper.cs
- BaseInfoTable.cs
- GlobalItem.cs
- TextUtf8RawTextWriter.cs
- JsonEnumDataContract.cs
- DirectionalLight.cs
- ListBoxItem.cs
- RadioButton.cs
- MouseButton.cs
- Decorator.cs
- ReadWriteObjectLock.cs
- QuotedPrintableStream.cs
- StoreItemCollection.Loader.cs
- TaskFileService.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- FormView.cs
- TabControl.cs
- BamlTreeUpdater.cs
- VerbConverter.cs
- GlobalizationSection.cs
- DocumentViewerBase.cs
- Figure.cs
- XpsFixedPageReaderWriter.cs
- ParserStreamGeometryContext.cs
- SQLInt64.cs
- SystemWebExtensionsSectionGroup.cs
- UserControlBuildProvider.cs
- GroupBox.cs
- XmlSchemaSimpleTypeList.cs
- ConfigXmlComment.cs
- OleDbWrapper.cs
- ProgressChangedEventArgs.cs
- isolationinterop.cs
- JumpList.cs
- PrivilegedConfigurationManager.cs
- TypeInitializationException.cs
- BuilderPropertyEntry.cs
- DoubleKeyFrameCollection.cs
- ExtentJoinTreeNode.cs
- UrlUtility.cs
- GridItemPattern.cs
- IndentTextWriter.cs
- FragmentNavigationEventArgs.cs
- SecurityContextSecurityTokenParameters.cs
- SqlFunctions.cs
- EntityCollection.cs