Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- ListViewCancelEventArgs.cs
- PrintPreviewDialog.cs
- PerformanceCountersBase.cs
- NativeActivityAbortContext.cs
- HotSpot.cs
- QueryExpression.cs
- RichTextBox.cs
- ErrorHandler.cs
- HostingEnvironment.cs
- XmlEnumAttribute.cs
- NonClientArea.cs
- XsltArgumentList.cs
- XmlElementList.cs
- DataTableReader.cs
- PaperSource.cs
- CompositeFontFamily.cs
- WrappedReader.cs
- altserialization.cs
- AsyncPostBackTrigger.cs
- RemotingException.cs
- TreeBuilderXamlTranslator.cs
- TextTabProperties.cs
- UserNamePasswordValidationMode.cs
- CodeTypeParameterCollection.cs
- OpenTypeLayoutCache.cs
- FontSizeConverter.cs
- WebServiceErrorEvent.cs
- _ContextAwareResult.cs
- SizeLimitedCache.cs
- TreeNodeBindingCollection.cs
- BitmapEffectGeneralTransform.cs
- TransactionManager.cs
- ArglessEventHandlerProxy.cs
- RuleDefinitions.cs
- KnownBoxes.cs
- AccessViolationException.cs
- SchemaCreator.cs
- parserscommon.cs
- BaseAsyncResult.cs
- ApplicationServiceManager.cs
- SimpleExpression.cs
- ServicePoint.cs
- OracleException.cs
- ImmutableObjectAttribute.cs
- TypeDependencyAttribute.cs
- PackageProperties.cs
- ADMembershipUser.cs
- FixedDSBuilder.cs
- NotSupportedException.cs
- Transform3DCollection.cs
- TraceHelpers.cs
- DoubleUtil.cs
- ContentPresenter.cs
- TextEvent.cs
- Int32Storage.cs
- GradientStop.cs
- AspNetHostingPermission.cs
- AbstractSvcMapFileLoader.cs
- GeometryCombineModeValidation.cs
- selecteditemcollection.cs
- CodeTypeReferenceExpression.cs
- PropertyInformationCollection.cs
- ReadOnlyTernaryTree.cs
- BoundPropertyEntry.cs
- SqlInternalConnectionTds.cs
- StrokeCollection2.cs
- CroppedBitmap.cs
- UnsafeNativeMethodsCLR.cs
- SqlDataSourceCache.cs
- DeflateEmulationStream.cs
- ModuleBuilder.cs
- BuildProvider.cs
- odbcmetadatacollectionnames.cs
- TreeBuilderBamlTranslator.cs
- SimpleTypesSurrogate.cs
- SmtpClient.cs
- ExtendedPropertyDescriptor.cs
- SimpleHandlerBuildProvider.cs
- SHA256.cs
- ProjectedSlot.cs
- ListViewUpdatedEventArgs.cs
- XNodeValidator.cs
- PolyBezierSegment.cs
- HiddenFieldPageStatePersister.cs
- DisplayMemberTemplateSelector.cs
- ForeignKeyConstraint.cs
- MulticastDelegate.cs
- BasicExpressionVisitor.cs
- UnsafeNativeMethods.cs
- CodeBlockBuilder.cs
- Vector.cs
- HtmlTitle.cs
- SegmentTree.cs
- SendingRequestEventArgs.cs
- TargetInvocationException.cs
- DataBindingExpressionBuilder.cs
- DrawingState.cs
- util.cs
- SmtpFailedRecipientException.cs
- UniqueConstraint.cs