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
- ParallelDesigner.cs
- TransactionFlowElement.cs
- ListBox.cs
- Point.cs
- EntityProviderServices.cs
- TypeName.cs
- Symbol.cs
- WebServiceTypeData.cs
- BitmapEffectDrawing.cs
- XamlInt32CollectionSerializer.cs
- EntityContainerEmitter.cs
- ReflectEventDescriptor.cs
- IncrementalCompileAnalyzer.cs
- TaiwanCalendar.cs
- HtmlShim.cs
- EditorPartCollection.cs
- LabelLiteral.cs
- WebPartZoneBase.cs
- StorageAssociationSetMapping.cs
- iisPickupDirectory.cs
- SQlBooleanStorage.cs
- AnnotationService.cs
- SafeLocalAllocation.cs
- FixedTextPointer.cs
- RelationshipWrapper.cs
- StickyNote.cs
- EntityTypeEmitter.cs
- UInt32Storage.cs
- PolicyLevel.cs
- PackagingUtilities.cs
- Bezier.cs
- HttpFormatExtensions.cs
- RowCache.cs
- ColorAnimationUsingKeyFrames.cs
- LogReserveAndAppendState.cs
- AccessDataSourceView.cs
- CornerRadiusConverter.cs
- WinInet.cs
- CreateUserErrorEventArgs.cs
- HotSpot.cs
- JsonReader.cs
- SecurityTokenSpecification.cs
- TdsEnums.cs
- NoneExcludedImageIndexConverter.cs
- LinqDataSourceContextData.cs
- StylusTip.cs
- TreeChangeInfo.cs
- WrapPanel.cs
- FieldBuilder.cs
- PagesSection.cs
- XmlAttributeCollection.cs
- TimerEventSubscriptionCollection.cs
- FixedTextView.cs
- SimpleFileLog.cs
- ExpressionTextBoxAutomationPeer.cs
- DocumentApplicationJournalEntryEventArgs.cs
- TextBox.cs
- ValidationSummary.cs
- OptimalBreakSession.cs
- DataTableCollection.cs
- ArraySegment.cs
- SystemThemeKey.cs
- GeneralTransform.cs
- ViewgenContext.cs
- DataServiceHostFactory.cs
- SafeProcessHandle.cs
- SqlServer2KCompatibilityCheck.cs
- Tracking.cs
- TreeNodeStyle.cs
- XsdDuration.cs
- PassportAuthentication.cs
- KeyboardEventArgs.cs
- ColumnHeaderConverter.cs
- NameValueSectionHandler.cs
- FilteredXmlReader.cs
- FileNotFoundException.cs
- StorageAssociationTypeMapping.cs
- httpserverutility.cs
- SafeEventLogWriteHandle.cs
- MultiTrigger.cs
- BindingExpressionUncommonField.cs
- WizardStepBase.cs
- InvalidComObjectException.cs
- AnonymousIdentificationModule.cs
- Context.cs
- WebUtility.cs
- PhonemeConverter.cs
- SystemInfo.cs
- StringSource.cs
- control.ime.cs
- DataPagerCommandEventArgs.cs
- TextServicesHost.cs
- NGCUIElementCollectionSerializerAsync.cs
- DiffuseMaterial.cs
- AdRotatorDesigner.cs
- ImageBrush.cs
- XamlParser.cs
- PolyLineSegmentFigureLogic.cs
- OdbcCommand.cs
- EntityContainerRelationshipSet.cs