Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / ExpressionBinding.cs / 1305376 / 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; ////// 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; } } } // 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
- TileBrush.cs
- CompareValidator.cs
- DebugControllerThread.cs
- FixedElement.cs
- Parameter.cs
- DbParameterCollectionHelper.cs
- TextRangeProviderWrapper.cs
- HttpContextWrapper.cs
- DataServiceStreamResponse.cs
- XMLSyntaxException.cs
- FrameworkElement.cs
- CodeNamespaceImportCollection.cs
- InvalidCastException.cs
- ServiceModelExtensionCollectionElement.cs
- webeventbuffer.cs
- MediaTimeline.cs
- XmlSchemaAttributeGroup.cs
- BeginEvent.cs
- Label.cs
- VectorValueSerializer.cs
- HttpRequestCacheValidator.cs
- TrustVersion.cs
- OptionalColumn.cs
- DbSourceParameterCollection.cs
- CollectionViewGroup.cs
- ServiceHandle.cs
- MonitorWrapper.cs
- DbProviderConfigurationHandler.cs
- StartUpEventArgs.cs
- OrderByLifter.cs
- SoapAttributeAttribute.cs
- NetTcpBindingElement.cs
- BaseTemplateParser.cs
- BaseServiceProvider.cs
- Stopwatch.cs
- InputLanguageSource.cs
- Quaternion.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- TextDocumentView.cs
- Symbol.cs
- SystemWebSectionGroup.cs
- CacheAxisQuery.cs
- XmlValidatingReader.cs
- ProvidersHelper.cs
- SamlConstants.cs
- PropertyValueEditor.cs
- DragDeltaEventArgs.cs
- XPathNodeIterator.cs
- RectValueSerializer.cs
- DataGridRow.cs
- SamlSerializer.cs
- sapiproxy.cs
- WindowClosedEventArgs.cs
- EncoderBestFitFallback.cs
- WebRequestModulesSection.cs
- safelink.cs
- BufferModeSettings.cs
- ChangeInterceptorAttribute.cs
- ConstructorExpr.cs
- XPathDocumentBuilder.cs
- _emptywebproxy.cs
- TextReturnReader.cs
- HttpCacheVaryByContentEncodings.cs
- CalculatedColumn.cs
- ServerIdentity.cs
- BlurBitmapEffect.cs
- PageRouteHandler.cs
- SwitchAttribute.cs
- RegexReplacement.cs
- DBConnectionString.cs
- StrongNameUtility.cs
- __Filters.cs
- DataGridToolTip.cs
- CodeIterationStatement.cs
- WebHttpBindingCollectionElement.cs
- Literal.cs
- DrawingImage.cs
- XmlSchemaAnnotation.cs
- BindingOperations.cs
- RequestQueryProcessor.cs
- AnnotationResourceChangedEventArgs.cs
- ResourceWriter.cs
- TopClause.cs
- ToolboxComponentsCreatingEventArgs.cs
- FragmentQuery.cs
- GridEntry.cs
- ChangePassword.cs
- DocobjHost.cs
- KeySplineConverter.cs
- ContentControl.cs
- KeyValueSerializer.cs
- EntityConnectionStringBuilder.cs
- ElementProxy.cs
- BuildProvider.cs
- DataGridViewColumnConverter.cs
- CapabilitiesState.cs
- Odbc32.cs
- IndexingContentUnit.cs
- LinqDataSourceSelectEventArgs.cs
- XmlSecureResolver.cs