Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / ExpressionBinding.cs / 1 / ExpressionBinding.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 ExpressionBinding { private string _propertyName; private Type _propertyType; private string _expression; private string _expressionPrefix; private bool _generated; private object _parsedExpressionData; public ExpressionBinding(string propertyName, Type propertyType, string expressionPrefix, string expression) : this(propertyName, propertyType, expressionPrefix, expression, false, null) { } ////// internal ExpressionBinding(string propertyName, Type propertyType, string expressionPrefix, string expression, bool generated, object parsedExpressionData) { _propertyName = propertyName; _propertyType = propertyType; _expression = expression; _expressionPrefix = expressionPrefix; _generated = generated; _parsedExpressionData = parsedExpressionData; } ////// public string Expression { get { return _expression; } set { _expression = value; } } ////// G public string ExpressionPrefix { get { return _expressionPrefix; } set { _expressionPrefix = value; } } public bool Generated { get { return _generated; } } public object ParsedExpressionData { get { return _parsedExpressionData; } } ////// public string PropertyName { get { return _propertyName; } } ////// public Type PropertyType { get { return _propertyType; } } ////// public override int GetHashCode() { return _propertyName.ToLower(CultureInfo.InvariantCulture).GetHashCode(); } ////// public override bool Equals(object obj) { if ((obj != null) && (obj is ExpressionBinding)) { ExpressionBinding binding = (ExpressionBinding)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
- SemanticAnalyzer.cs
- ResourceDisplayNameAttribute.cs
- TypeElement.cs
- OleCmdHelper.cs
- ManagementObjectSearcher.cs
- XmlILCommand.cs
- NamedElement.cs
- WinEventQueueItem.cs
- SqlBuilder.cs
- LicenseException.cs
- PersistenceException.cs
- TrustExchangeException.cs
- InputReportEventArgs.cs
- QueryResponse.cs
- BCLDebug.cs
- SQLDoubleStorage.cs
- SimpleBitVector32.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- NetworkInterface.cs
- ScrollEvent.cs
- ReferencedCollectionType.cs
- BaseParagraph.cs
- DbTypeMap.cs
- ACL.cs
- BasicExpressionVisitor.cs
- BitmapScalingModeValidation.cs
- ThreadExceptionEvent.cs
- ClientData.cs
- DataColumn.cs
- PropertyGridEditorPart.cs
- GridSplitterAutomationPeer.cs
- TypeDependencyAttribute.cs
- SystemTcpConnection.cs
- ParallelQuery.cs
- Symbol.cs
- SplashScreen.cs
- WindowsGraphics2.cs
- WindowsBrush.cs
- WindowsPen.cs
- StatusBarPanel.cs
- Enum.cs
- Configuration.cs
- CaseKeyBox.ViewModel.cs
- ColorAnimationBase.cs
- TextDecorationCollection.cs
- EmitterCache.cs
- Speller.cs
- AutoGeneratedFieldProperties.cs
- ByteAnimationBase.cs
- MonitoringDescriptionAttribute.cs
- DataGridViewColumn.cs
- MethodRental.cs
- ApplicationFileCodeDomTreeGenerator.cs
- DataGridLinkButton.cs
- DataSvcMapFile.cs
- KeyPressEvent.cs
- DbRetry.cs
- NameTable.cs
- ObjectCache.cs
- EntityConnectionStringBuilder.cs
- ActiveXSite.cs
- LinearGradientBrush.cs
- Win32.cs
- DataServiceRequestException.cs
- ObjectDataSourceSelectingEventArgs.cs
- contentDescriptor.cs
- DoWhileDesigner.xaml.cs
- BinarySerializer.cs
- IdentifierService.cs
- DiffuseMaterial.cs
- DataGridViewCheckBoxCell.cs
- Matrix3D.cs
- WebPartAddingEventArgs.cs
- KeyGestureValueSerializer.cs
- SqlInternalConnectionTds.cs
- MonthChangedEventArgs.cs
- ApplicationFileParser.cs
- SimpleMailWebEventProvider.cs
- TypeInfo.cs
- MediaElementAutomationPeer.cs
- MultiSelector.cs
- SqlInternalConnectionSmi.cs
- PointHitTestParameters.cs
- SmtpMail.cs
- SupportingTokenAuthenticatorSpecification.cs
- SortedSetDebugView.cs
- CustomWebEventKey.cs
- XPathBinder.cs
- ObjectTag.cs
- WebPartConnectionsCancelEventArgs.cs
- HelpEvent.cs
- StateFinalizationActivity.cs
- ListItemCollection.cs
- ClosableStream.cs
- Evidence.cs
- WinCategoryAttribute.cs
- UrlMappingCollection.cs
- RegexGroup.cs
- XslAst.cs
- DropSource.cs