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 / 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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); } } } // 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
- xsdvalidator.cs
- DelegatedStream.cs
- Compilation.cs
- TargetConverter.cs
- XmlSchemaGroupRef.cs
- Query.cs
- Viewport3DAutomationPeer.cs
- UriTemplateVariablePathSegment.cs
- SocketException.cs
- WebBrowserUriTypeConverter.cs
- PropertyDescriptors.cs
- XmlSchemaIdentityConstraint.cs
- Codec.cs
- EnumerableRowCollectionExtensions.cs
- DecoderReplacementFallback.cs
- TdsParserSafeHandles.cs
- CodeExpressionRuleDeclaration.cs
- TypeSource.cs
- EntityViewGenerationConstants.cs
- ContextMenuAutomationPeer.cs
- ToggleProviderWrapper.cs
- UpdateEventArgs.cs
- RegexCompiler.cs
- HebrewCalendar.cs
- CheckedPointers.cs
- DataGridViewCellValueEventArgs.cs
- TextSimpleMarkerProperties.cs
- DefaultValueAttribute.cs
- QilFunction.cs
- EntityDataSourceMemberPath.cs
- XmlQueryOutput.cs
- SoapHeaderAttribute.cs
- ApplicationServiceHelper.cs
- SignatureToken.cs
- LinqDataSource.cs
- ApplyTemplatesAction.cs
- UnauthorizedAccessException.cs
- processwaithandle.cs
- TableRowCollection.cs
- EncryptedKey.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- validation.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- ComponentEditorPage.cs
- FirstQueryOperator.cs
- Run.cs
- PathSegmentCollection.cs
- StylusPointCollection.cs
- PositiveTimeSpanValidator.cs
- ComponentCodeDomSerializer.cs
- WebPartManagerDesigner.cs
- TimeSpanMinutesConverter.cs
- LineMetrics.cs
- FrameworkElement.cs
- PropertyChangeTracker.cs
- RewritingProcessor.cs
- SafeSystemMetrics.cs
- InkPresenterAutomationPeer.cs
- TransformationRules.cs
- ConfigurationStrings.cs
- DragDrop.cs
- RegexReplacement.cs
- WindowsRichEdit.cs
- TraceHandler.cs
- DefaultValueAttribute.cs
- WindowsListViewGroupHelper.cs
- BevelBitmapEffect.cs
- ParsedAttributeCollection.cs
- MainMenu.cs
- CryptoConfig.cs
- DecoratedNameAttribute.cs
- DragEvent.cs
- TabItemWrapperAutomationPeer.cs
- BinaryObjectWriter.cs
- X509ChainPolicy.cs
- DataGridTextBox.cs
- SkewTransform.cs
- StrongNameHelpers.cs
- ImageField.cs
- PassportIdentity.cs
- CustomDictionarySources.cs
- ExtenderProvidedPropertyAttribute.cs
- MatrixTransform.cs
- VisualProxy.cs
- DataServiceRequestArgs.cs
- CachedBitmap.cs
- documentation.cs
- FlowchartDesigner.xaml.cs
- DisplayNameAttribute.cs
- RecognizeCompletedEventArgs.cs
- SqlDependency.cs
- ServiceSecurityContext.cs
- FontCollection.cs
- RoleService.cs
- DiagnosticTrace.cs
- SqlTypesSchemaImporter.cs
- HttpServerVarsCollection.cs
- XmlSchemaSimpleContentExtension.cs
- XmlSchemaAttributeGroupRef.cs
- RouteCollection.cs