Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Panel.cs
- SoapIgnoreAttribute.cs
- HttpChannelBindingToken.cs
- XhtmlBasicSelectionListAdapter.cs
- JsonFormatWriterGenerator.cs
- StyleTypedPropertyAttribute.cs
- MachineKeySection.cs
- EdmItemError.cs
- XPathNavigatorKeyComparer.cs
- RequestCache.cs
- HtmlTable.cs
- Application.cs
- WinEventTracker.cs
- GetPageCompletedEventArgs.cs
- SqlLiftWhereClauses.cs
- WFItemsToSpacerVisibility.cs
- Int32CollectionConverter.cs
- ModifyActivitiesPropertyDescriptor.cs
- MonitoringDescriptionAttribute.cs
- FontWeightConverter.cs
- ManagementEventArgs.cs
- SQLInt32Storage.cs
- xmlsaver.cs
- storepermission.cs
- AutoResetEvent.cs
- XmlParser.cs
- Rectangle.cs
- WebRequestModulesSection.cs
- LinkConverter.cs
- RadialGradientBrush.cs
- HitTestWithGeometryDrawingContextWalker.cs
- DataGridItem.cs
- SamlDelegatingWriter.cs
- HtmlFormWrapper.cs
- NavigationProperty.cs
- PropertyGeneratedEventArgs.cs
- QueryCursorEventArgs.cs
- BinaryObjectWriter.cs
- EventPropertyMap.cs
- TextureBrush.cs
- Property.cs
- SelectionItemPattern.cs
- CustomSignedXml.cs
- FixedTextView.cs
- KeyFrames.cs
- PrePostDescendentsWalker.cs
- AdjustableArrowCap.cs
- X509AudioLogo.cs
- RelatedImageListAttribute.cs
- CodeSubDirectoriesCollection.cs
- ISO2022Encoding.cs
- LogSwitch.cs
- QilTernary.cs
- Collection.cs
- MobileFormsAuthentication.cs
- AssemblySettingAttributes.cs
- HtmlUtf8RawTextWriter.cs
- DataGridViewCellCollection.cs
- Wildcard.cs
- DesignerUtility.cs
- ThemeDirectoryCompiler.cs
- CodeAttachEventStatement.cs
- QuadraticBezierSegment.cs
- CodeTypeDeclaration.cs
- RootCodeDomSerializer.cs
- recordstatefactory.cs
- Int32.cs
- ContentDefinition.cs
- WpfKnownMember.cs
- ObjectDataSourceChooseMethodsPanel.cs
- ConsoleKeyInfo.cs
- WebPartZoneBase.cs
- DataColumn.cs
- DatatypeImplementation.cs
- JulianCalendar.cs
- loginstatus.cs
- SafeIUnknown.cs
- AsymmetricKeyExchangeDeformatter.cs
- WindowsTreeView.cs
- TypeSystem.cs
- ProgressPage.cs
- HasCopySemanticsAttribute.cs
- SemaphoreSlim.cs
- BuildDependencySet.cs
- ConfigViewGenerator.cs
- HtmlContainerControl.cs
- OdbcPermission.cs
- MaterialGroup.cs
- DataSourceNameHandler.cs
- StringExpressionSet.cs
- CalendarDayButton.cs
- XmlAtomicValue.cs
- KnownTypeAttribute.cs
- Point3DCollectionValueSerializer.cs
- RequestCacheEntry.cs
- TabControl.cs
- RankException.cs
- OperatingSystem.cs
- DatasetMethodGenerator.cs
- CodeBlockBuilder.cs