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 / SimplePropertyEntry.cs / 1 / SimplePropertyEntry.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.CodeDom; using System.Web.Compilation; using Debug=System.Web.Util.Debug; using System.Security.Permissions; ////// PropertyEntry for simple attributes /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class SimplePropertyEntry : PropertyEntry { private string _persistedValue; private bool _useSetAttribute; private object _value; internal SimplePropertyEntry() { } ////// // public string PersistedValue { get { return _persistedValue; } set { _persistedValue = value; } } ////// public bool UseSetAttribute { get { return _useSetAttribute; } set { _useSetAttribute = value; } } ////// public object Value { get { return _value; } set { _value = value; } } // Build the statement that assigns this property internal CodeStatement GetCodeStatement(BaseTemplateCodeDomTreeGenerator generator, CodeExpression ctrlRefExpr) { // If we don't have a type, use IAttributeAccessor.SetAttribute if (UseSetAttribute) { // e.g. ((IAttributeAccessor)__ctrl).SetAttribute("{{_name}}", "{{_value}}"); CodeMethodInvokeExpression methCallExpression = new CodeMethodInvokeExpression( new CodeCastExpression(typeof(IAttributeAccessor), ctrlRefExpr), "SetAttribute"); methCallExpression.Parameters.Add(new CodePrimitiveExpression(Name)); methCallExpression.Parameters.Add(new CodePrimitiveExpression(Value)); return new CodeExpressionStatement(methCallExpression); } CodeExpression leftExpr, rightExpr = null; if (PropertyInfo != null) { leftExpr = CodeDomUtility.BuildPropertyReferenceExpression(ctrlRefExpr, Name); } else { // In case of a field, there should only be one (unlike properties) Debug.Assert(Name.IndexOf('.') < 0, "_name.IndexOf('.') < 0"); leftExpr = new CodeFieldReferenceExpression(ctrlRefExpr, Name); } if (Type == typeof(string)) { rightExpr = generator.BuildStringPropertyExpression(this); } else { rightExpr = CodeDomUtility.GenerateExpressionForValue(PropertyInfo, Value, Type); } // Now that we have both side, add the assignment return new CodeAssignStatement(leftExpr, rightExpr); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.CodeDom; using System.Web.Compilation; using Debug=System.Web.Util.Debug; using System.Security.Permissions; ////// PropertyEntry for simple attributes /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class SimplePropertyEntry : PropertyEntry { private string _persistedValue; private bool _useSetAttribute; private object _value; internal SimplePropertyEntry() { } ////// // public string PersistedValue { get { return _persistedValue; } set { _persistedValue = value; } } ////// public bool UseSetAttribute { get { return _useSetAttribute; } set { _useSetAttribute = value; } } ////// public object Value { get { return _value; } set { _value = value; } } // Build the statement that assigns this property internal CodeStatement GetCodeStatement(BaseTemplateCodeDomTreeGenerator generator, CodeExpression ctrlRefExpr) { // If we don't have a type, use IAttributeAccessor.SetAttribute if (UseSetAttribute) { // e.g. ((IAttributeAccessor)__ctrl).SetAttribute("{{_name}}", "{{_value}}"); CodeMethodInvokeExpression methCallExpression = new CodeMethodInvokeExpression( new CodeCastExpression(typeof(IAttributeAccessor), ctrlRefExpr), "SetAttribute"); methCallExpression.Parameters.Add(new CodePrimitiveExpression(Name)); methCallExpression.Parameters.Add(new CodePrimitiveExpression(Value)); return new CodeExpressionStatement(methCallExpression); } CodeExpression leftExpr, rightExpr = null; if (PropertyInfo != null) { leftExpr = CodeDomUtility.BuildPropertyReferenceExpression(ctrlRefExpr, Name); } else { // In case of a field, there should only be one (unlike properties) Debug.Assert(Name.IndexOf('.') < 0, "_name.IndexOf('.') < 0"); leftExpr = new CodeFieldReferenceExpression(ctrlRefExpr, Name); } if (Type == typeof(string)) { rightExpr = generator.BuildStringPropertyExpression(this); } else { rightExpr = CodeDomUtility.GenerateExpressionForValue(PropertyInfo, Value, Type); } // Now that we have both side, add the assignment return new CodeAssignStatement(leftExpr, rightExpr); } } } // 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
- DynamicDocumentPaginator.cs
- Delegate.cs
- CustomAttributeFormatException.cs
- SID.cs
- SqlDataSourceView.cs
- AppDomainUnloadedException.cs
- SqlConnectionPoolGroupProviderInfo.cs
- TemplateNodeContextMenu.cs
- PeerObject.cs
- ReadWriteObjectLock.cs
- ProgressChangedEventArgs.cs
- SecureUICommand.cs
- SystemResources.cs
- SettingsPropertyNotFoundException.cs
- OleDragDropHandler.cs
- Guid.cs
- NavigateEvent.cs
- CodeAttributeArgumentCollection.cs
- CollectionViewGroupRoot.cs
- VectorAnimation.cs
- EntityDataSourceConfigureObjectContext.cs
- MouseBinding.cs
- EditCommandColumn.cs
- RequestCacheValidator.cs
- CompositeControl.cs
- RadioButtonStandardAdapter.cs
- DataGridViewDataConnection.cs
- ComponentDispatcher.cs
- FontInfo.cs
- AddingNewEventArgs.cs
- HttpModuleCollection.cs
- ConfigurationValues.cs
- TextElement.cs
- TableChangeProcessor.cs
- XmlSchemaSimpleContentExtension.cs
- XmlSequenceWriter.cs
- AppDomainResourcePerfCounters.cs
- ParameterBuilder.cs
- SchemaTypeEmitter.cs
- CounterNameConverter.cs
- DataRelationCollection.cs
- TreeViewEvent.cs
- BlurEffect.cs
- DynamicResourceExtensionConverter.cs
- ToolStripContentPanel.cs
- WS2007HttpBindingElement.cs
- HelpKeywordAttribute.cs
- TextSelectionProcessor.cs
- ComplusTypeValidator.cs
- ParenthesizePropertyNameAttribute.cs
- GeneralTransform2DTo3D.cs
- ButtonBase.cs
- FormatVersion.cs
- CompatibleComparer.cs
- ContractSearchPattern.cs
- ExpressionLexer.cs
- AsymmetricSignatureFormatter.cs
- CardSpaceSelector.cs
- XmlEntity.cs
- XPathEmptyIterator.cs
- smtppermission.cs
- XPathDocumentBuilder.cs
- DataRelationCollection.cs
- Viewport3DAutomationPeer.cs
- XmlSchemaComplexContentRestriction.cs
- SpeechUI.cs
- SeparatorAutomationPeer.cs
- WindowsGraphics2.cs
- isolationinterop.cs
- XmlDeclaration.cs
- HitTestWithGeometryDrawingContextWalker.cs
- PropertyPathWorker.cs
- PropertyTab.cs
- PolicyStatement.cs
- ReachDocumentReferenceSerializerAsync.cs
- DiscoveryDocumentSerializer.cs
- KeyTime.cs
- DesignerTransactionCloseEvent.cs
- SqlNotificationEventArgs.cs
- DataGridViewTextBoxEditingControl.cs
- ThreadStartException.cs
- Control.cs
- SortKey.cs
- ClientOptions.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- RetrieveVirtualItemEventArgs.cs
- Serializer.cs
- MonitoringDescriptionAttribute.cs
- NotEqual.cs
- Relationship.cs
- DataContractSet.cs
- MobileControlDesigner.cs
- TemplateControl.cs
- Journal.cs
- StateRuntime.cs
- VisualStyleInformation.cs
- OrthographicCamera.cs
- UIElement3D.cs
- EntityDataSourceSelectedEventArgs.cs
- TTSVoice.cs