Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / BoundPropertyEntry.cs / 1 / BoundPropertyEntry.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Reflection; using System.Web.Util; using System.Web.Compilation; using System.ComponentModel.Design; using System.Security.Permissions; ////// PropertyEntry for any bound properties /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class BoundPropertyEntry : PropertyEntry { private string _expression; private ExpressionBuilder _expressionBuilder; private string _expressionPrefix; private bool _useSetAttribute; private object _parsedExpressionData; private bool _generated; private string _fieldName; private string _formatString; private string _controlID; private Type _controlType; private bool _readOnlyProperty; private bool _twoWayBound; internal BoundPropertyEntry() { } ////// The id of the control that contains this binding. /// public string ControlID { get { return _controlID; } set { _controlID = value; } } ////// The type of the control which is being bound to a runtime value. /// public Type ControlType { get { return _controlType; } set { _controlType = value; } } ////// public string Expression { get { return _expression; } set { _expression = value; } } public ExpressionBuilder ExpressionBuilder { get { return _expressionBuilder; } set { _expressionBuilder = value; } } public string ExpressionPrefix { get { return _expressionPrefix; } set { _expressionPrefix = value; } } ////// The name of the data field that is being bound to. /// public string FieldName { get { return _fieldName; } set { _fieldName = value; } } ////// The format string applied to the field for display. /// public string FormatString { get { return _formatString; } set { _formatString = value; } } internal bool IsDataBindingEntry { // Empty prefix means it's a databinding expression (i.e. <%# ... %>) get { return String.IsNullOrEmpty(ExpressionPrefix); } } public bool Generated { get { return _generated; } set { _generated = value; } } public object ParsedExpressionData { get { return _parsedExpressionData; } set { _parsedExpressionData = value; } } ////// Indicates whether the two way statement is set and get, or just get but not set. /// public bool ReadOnlyProperty { get { return _readOnlyProperty; } set { _readOnlyProperty = value; } } public bool TwoWayBound { get { return _twoWayBound; } set { _twoWayBound = value; } } ////// public bool UseSetAttribute { get { return _useSetAttribute; } set { _useSetAttribute = value; } } // Parse the expression, and store the resulting object internal void ParseExpression(ExpressionBuilderContext context) { if (Expression == null || ExpressionPrefix == null || ExpressionBuilder == null) return; _parsedExpressionData = ExpressionBuilder.ParseExpression(Expression, Type, context); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SimpleApplicationHost.cs
- _LocalDataStoreMgr.cs
- KeyedHashAlgorithm.cs
- RelationshipSet.cs
- ByteStream.cs
- ResXFileRef.cs
- WindowsPen.cs
- ArgumentNullException.cs
- __ConsoleStream.cs
- TextBoxBaseDesigner.cs
- DBPropSet.cs
- TypeHelpers.cs
- TextRunCache.cs
- GradientStop.cs
- TextTrailingCharacterEllipsis.cs
- TraceProvider.cs
- AuthenticationSchemesHelper.cs
- COM2EnumConverter.cs
- PropertyRecord.cs
- Vector3DCollectionConverter.cs
- HttpModule.cs
- Transform.cs
- ParsedAttributeCollection.cs
- DataView.cs
- ByteStorage.cs
- MultiTrigger.cs
- BitmapCacheBrush.cs
- UTF32Encoding.cs
- XmlDocumentType.cs
- ScrollViewerAutomationPeer.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- ParameterElement.cs
- InfoCardArgumentException.cs
- BamlMapTable.cs
- Logging.cs
- EntityConnection.cs
- DataGridViewCellValueEventArgs.cs
- PtsHelper.cs
- HttpClientCertificate.cs
- InlineUIContainer.cs
- WindowInteractionStateTracker.cs
- StylusButtonCollection.cs
- SqlNotificationRequest.cs
- KnownTypesHelper.cs
- AutomationEvent.cs
- StoreItemCollection.cs
- CTreeGenerator.cs
- ImageSourceConverter.cs
- SafeArrayTypeMismatchException.cs
- UserMapPath.cs
- ClientRuntimeConfig.cs
- XmlSchemaSimpleContentExtension.cs
- PaginationProgressEventArgs.cs
- ApplicationServiceManager.cs
- ToolStripComboBox.cs
- LineSegment.cs
- ContainerSelectorBehavior.cs
- ItemAutomationPeer.cs
- HttpCacheVary.cs
- AngleUtil.cs
- PasswordTextNavigator.cs
- InvokeGenerator.cs
- invalidudtexception.cs
- LinqDataSourceDeleteEventArgs.cs
- CatalogZone.cs
- PointConverter.cs
- EntityException.cs
- TemplateXamlParser.cs
- PreviewPageInfo.cs
- ValidationResult.cs
- XmlDataDocument.cs
- PackWebResponse.cs
- SchemaObjectWriter.cs
- PermissionSetEnumerator.cs
- SourceExpressionException.cs
- InvalidProgramException.cs
- ConfigurationValue.cs
- NamedPipeProcessProtocolHandler.cs
- FileStream.cs
- InternalBase.cs
- GroupItemAutomationPeer.cs
- TakeQueryOptionExpression.cs
- BeginCreateSecurityTokenRequest.cs
- QueryAccessibilityHelpEvent.cs
- DataBindingExpressionBuilder.cs
- XmlNode.cs
- NavigationHelper.cs
- ISAPIRuntime.cs
- SafeNativeMethods.cs
- WorkflowInstance.cs
- RowBinding.cs
- DebugControllerThread.cs
- OracleTransaction.cs
- DataListItemEventArgs.cs
- DynamicResourceExtension.cs
- DataGridViewToolTip.cs
- StructureChangedEventArgs.cs
- CryptographicAttribute.cs
- Buffer.cs
- DependencyObject.cs