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
- Vector.cs
- CollectionBase.cs
- OleDbParameterCollection.cs
- ActiveDocumentEvent.cs
- VerticalAlignConverter.cs
- CharConverter.cs
- printdlgexmarshaler.cs
- XomlSerializationHelpers.cs
- ZipIOLocalFileBlock.cs
- WebPartVerb.cs
- DocumentsTrace.cs
- TextLineBreak.cs
- Mappings.cs
- MgmtResManager.cs
- ResourcesBuildProvider.cs
- OdbcConnectionString.cs
- CounterSampleCalculator.cs
- ConfigXmlWhitespace.cs
- _LoggingObject.cs
- DictionaryItemsCollection.cs
- EventLogStatus.cs
- ChannelListenerBase.cs
- TaskHelper.cs
- ResourceContainerWrapper.cs
- ExtensionQuery.cs
- BitmapPalettes.cs
- WebDisplayNameAttribute.cs
- PackWebResponse.cs
- ToolStripOverflowButton.cs
- SecurityTokenAttachmentMode.cs
- OverflowException.cs
- DataContractAttribute.cs
- HotSpotCollection.cs
- SelectionService.cs
- MappedMetaModel.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- RuleElement.cs
- ModelItemKeyValuePair.cs
- DataGridCell.cs
- SimpleHandlerFactory.cs
- ExceptionTrace.cs
- ClaimTypes.cs
- HashHelper.cs
- VectorCollection.cs
- DateTimeStorage.cs
- RouteItem.cs
- _NativeSSPI.cs
- TextViewSelectionProcessor.cs
- GridViewRowPresenterBase.cs
- HttpBufferlessInputStream.cs
- basenumberconverter.cs
- ProfileGroupSettingsCollection.cs
- XmlCompatibilityReader.cs
- ForceCopyBuildProvider.cs
- DescendantBaseQuery.cs
- HtmlImage.cs
- TypeBrowser.xaml.cs
- ToolStripDesignerAvailabilityAttribute.cs
- DataGridTextBoxColumn.cs
- OutArgumentConverter.cs
- HttpApplicationStateWrapper.cs
- RTLAwareMessageBox.cs
- ListViewSelectEventArgs.cs
- ArrayExtension.cs
- listitem.cs
- Types.cs
- SpeechSynthesizer.cs
- NTAccount.cs
- DecodeHelper.cs
- DateTimeConverter.cs
- TdsRecordBufferSetter.cs
- RecognizedAudio.cs
- XmlNamespaceManager.cs
- IndexerNameAttribute.cs
- TextEffect.cs
- ValidatorUtils.cs
- MergePropertyDescriptor.cs
- PointLight.cs
- MemberRelationshipService.cs
- RemoteArgument.cs
- PrintDialogException.cs
- DbTransaction.cs
- NavigationCommands.cs
- TypedReference.cs
- Int64Storage.cs
- NativeConfigurationLoader.cs
- ProtocolsConfiguration.cs
- TextServicesCompartmentEventSink.cs
- EdmPropertyAttribute.cs
- CustomCategoryAttribute.cs
- SingleStorage.cs
- TextParentUndoUnit.cs
- ObjectDataSourceSelectingEventArgs.cs
- ClientApiGenerator.cs
- EventMappingSettingsCollection.cs
- ISSmlParser.cs
- ActiveXHost.cs
- ScrollViewerAutomationPeer.cs
- SpecularMaterial.cs
- OdbcTransaction.cs