Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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; } } } // 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; ////// [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; } } } // 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
- TimeSpanMinutesConverter.cs
- ComponentResourceManager.cs
- UnsafeNativeMethods.cs
- CodePrimitiveExpression.cs
- Mutex.cs
- DynamicPropertyReader.cs
- DataTableNewRowEvent.cs
- DataSourceControl.cs
- MenuItemBindingCollection.cs
- HtmlInputHidden.cs
- TypeInitializationException.cs
- GroupBox.cs
- DragCompletedEventArgs.cs
- NullableDoubleMinMaxAggregationOperator.cs
- Base64Encoding.cs
- Vector3dCollection.cs
- JsonReaderDelegator.cs
- Lease.cs
- BamlResourceDeserializer.cs
- NetworkInterface.cs
- mediaeventargs.cs
- XmlIncludeAttribute.cs
- TraceListener.cs
- TemplateBindingExpression.cs
- MimeFormatExtensions.cs
- TcpClientSocketManager.cs
- OptimizerPatterns.cs
- ViewEventArgs.cs
- CompositeDuplexElement.cs
- XmlSignatureProperties.cs
- InProcStateClientManager.cs
- CodeDomConfigurationHandler.cs
- SelectorItemAutomationPeer.cs
- ProtocolsConfigurationEntry.cs
- AvTraceFormat.cs
- TrackingLocation.cs
- DataGridViewRowCancelEventArgs.cs
- IdSpace.cs
- CopyOnWriteList.cs
- ImageCodecInfo.cs
- ValidatorUtils.cs
- RuntimeWrappedException.cs
- EntityDesignerUtils.cs
- StateBag.cs
- TraversalRequest.cs
- SerialStream.cs
- TraceContextRecord.cs
- SourceSwitch.cs
- StrongNameIdentityPermission.cs
- DbParameterCollectionHelper.cs
- CodeSnippetStatement.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- COM2PropertyBuilderUITypeEditor.cs
- GroupJoinQueryOperator.cs
- EvidenceBase.cs
- DataStreamFromComStream.cs
- TagMapInfo.cs
- Attachment.cs
- SeverityFilter.cs
- ApplicationFileParser.cs
- GeneralTransformGroup.cs
- SizeAnimationBase.cs
- HttpServerVarsCollection.cs
- WindowsProgressbar.cs
- ContextMenu.cs
- AQNBuilder.cs
- RealProxy.cs
- SpAudioStreamWrapper.cs
- WindowsAuthenticationEventArgs.cs
- HiddenFieldPageStatePersister.cs
- DecoderFallback.cs
- AuthenticationModeHelper.cs
- RemoteWebConfigurationHost.cs
- RequestResizeEvent.cs
- OracleConnectionFactory.cs
- _SSPISessionCache.cs
- TemplatedWizardStep.cs
- EntityStoreSchemaFilterEntry.cs
- FontEmbeddingManager.cs
- SpeechSynthesizer.cs
- RMPermissions.cs
- FlatButtonAppearance.cs
- PatternMatchRules.cs
- CatalogZone.cs
- PathFigureCollection.cs
- UnsafeCollabNativeMethods.cs
- OpCopier.cs
- DbTransaction.cs
- DataGridViewButtonColumn.cs
- AllMembershipCondition.cs
- listviewsubitemcollectioneditor.cs
- TrustExchangeException.cs
- SendKeys.cs
- NonParentingControl.cs
- PointCollectionConverter.cs
- OledbConnectionStringbuilder.cs
- XmlHierarchicalEnumerable.cs
- SR.cs
- ColumnBinding.cs
- ScrollBarRenderer.cs