Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- BevelBitmapEffect.cs
- GenericAuthenticationEventArgs.cs
- SystemException.cs
- MobileComponentEditorPage.cs
- ClickablePoint.cs
- RankException.cs
- UpDownBaseDesigner.cs
- TextSelection.cs
- DataContractSerializerOperationBehavior.cs
- ListManagerBindingsCollection.cs
- TableColumnCollection.cs
- PersonalizableTypeEntry.cs
- ThemeInfoAttribute.cs
- AutomationPropertyInfo.cs
- SelectManyQueryOperator.cs
- MappingException.cs
- XsdValidatingReader.cs
- SystemResources.cs
- ResXResourceSet.cs
- cookiecollection.cs
- FontFaceLayoutInfo.cs
- BamlBinaryWriter.cs
- UrlPath.cs
- CollectionViewGroupRoot.cs
- updatecommandorderer.cs
- ChannelServices.cs
- COAUTHINFO.cs
- StorageAssociationSetMapping.cs
- XhtmlTextWriter.cs
- BaseCodePageEncoding.cs
- CompoundFileDeflateTransform.cs
- ADConnectionHelper.cs
- AttributeExtensions.cs
- DurationConverter.cs
- processwaithandle.cs
- UrlMappingCollection.cs
- RecommendedAsConfigurableAttribute.cs
- Maps.cs
- comcontractssection.cs
- ListViewInsertEventArgs.cs
- OleDbSchemaGuid.cs
- ViewManager.cs
- ConsoleKeyInfo.cs
- FactoryId.cs
- SafePointer.cs
- StorageModelBuildProvider.cs
- WebConfigurationHost.cs
- ISFClipboardData.cs
- ItemAutomationPeer.cs
- ConfigurationProperty.cs
- BStrWrapper.cs
- MsmqChannelFactoryBase.cs
- DnsPermission.cs
- RedirectionProxy.cs
- XmlCharacterData.cs
- Panel.cs
- WindowsAuthenticationEventArgs.cs
- SuppressIldasmAttribute.cs
- PrimitiveCodeDomSerializer.cs
- DataSourceHelper.cs
- BeginEvent.cs
- RouteParameter.cs
- WorkflowPersistenceService.cs
- AggregateNode.cs
- EmptyElement.cs
- util.cs
- XmlNullResolver.cs
- OutputCacheProfileCollection.cs
- GlobalizationSection.cs
- EntityViewGenerationAttribute.cs
- TraceProvider.cs
- ChannelServices.cs
- Matrix3D.cs
- WindowsTokenRoleProvider.cs
- TableParagraph.cs
- ActivityInterfaces.cs
- HtmlTableCellCollection.cs
- QilInvoke.cs
- EvidenceTypeDescriptor.cs
- SubpageParaClient.cs
- CreateInstanceBinder.cs
- cookie.cs
- HttpWebResponse.cs
- ProgressBarAutomationPeer.cs
- FixedPageAutomationPeer.cs
- TrustLevel.cs
- shaperfactoryquerycachekey.cs
- CodeCastExpression.cs
- DataControlPagerLinkButton.cs
- OpCopier.cs
- NonParentingControl.cs
- ToolBarTray.cs
- SqlDataAdapter.cs
- LOSFormatter.cs
- TextTabProperties.cs
- DataListCommandEventArgs.cs
- PartitionResolver.cs
- SqlDataSourceCustomCommandPanel.cs
- RegisteredArrayDeclaration.cs
- ControlBindingsCollection.cs