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
- NavigationService.cs
- KnownTypes.cs
- ScaleTransform.cs
- BitmapCodecInfo.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- HttpDebugHandler.cs
- ItemDragEvent.cs
- WebBrowserHelper.cs
- CompressedStack.cs
- ISCIIEncoding.cs
- EditorPartChrome.cs
- WindowsListViewItemStartMenu.cs
- DataListCommandEventArgs.cs
- DropDownButton.cs
- Context.cs
- LinkDescriptor.cs
- TypeListConverter.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- StatementContext.cs
- ApplicationProxyInternal.cs
- CustomLineCap.cs
- StringDictionary.cs
- DataDocumentXPathNavigator.cs
- XPathAxisIterator.cs
- printdlgexmarshaler.cs
- XmlBindingWorker.cs
- TextEditorCharacters.cs
- EditorPartChrome.cs
- ExceptionHandler.cs
- WindowExtensionMethods.cs
- InvalidateEvent.cs
- _SslStream.cs
- WebPartDisplayModeCollection.cs
- KeyedQueue.cs
- MaxSessionCountExceededException.cs
- DataObject.cs
- HierarchicalDataBoundControlAdapter.cs
- EmptyImpersonationContext.cs
- XmlComment.cs
- XmlCompatibilityReader.cs
- TemplateBamlTreeBuilder.cs
- StreamUpgradeBindingElement.cs
- DataTableNewRowEvent.cs
- AspNetCompatibilityRequirementsAttribute.cs
- FixedSchema.cs
- AuthorizationRuleCollection.cs
- SoundPlayer.cs
- AutoGeneratedFieldProperties.cs
- TextTrailingCharacterEllipsis.cs
- View.cs
- GlyphInfoList.cs
- Error.cs
- NotifyParentPropertyAttribute.cs
- CellParaClient.cs
- FileDialogCustomPlace.cs
- XmlSchemaSimpleTypeRestriction.cs
- DashStyle.cs
- securitycriticaldataformultiplegetandset.cs
- PageParserFilter.cs
- ScrollEvent.cs
- Font.cs
- BasicKeyConstraint.cs
- NullableDoubleAverageAggregationOperator.cs
- While.cs
- XPathParser.cs
- GeometryGroup.cs
- Vector3DCollection.cs
- Dictionary.cs
- ProcessManager.cs
- xml.cs
- IWorkflowDebuggerService.cs
- ProcessProtocolHandler.cs
- CounterCreationData.cs
- SqlTypeConverter.cs
- assertwrapper.cs
- HwndSubclass.cs
- FontDialog.cs
- DesigntimeLicenseContextSerializer.cs
- jithelpers.cs
- XmlSerializerNamespaces.cs
- PermissionToken.cs
- SecurityKeyIdentifierClause.cs
- SoapSchemaMember.cs
- DataColumnCollection.cs
- RadioButton.cs
- FormViewActionList.cs
- DeploymentSectionCache.cs
- ZoomPercentageConverter.cs
- SmiContext.cs
- SecurityUtils.cs
- embossbitmapeffect.cs
- WmiEventSink.cs
- GreenMethods.cs
- InstanceDescriptor.cs
- PieceDirectory.cs
- SmtpReplyReader.cs
- CultureTableRecord.cs
- BinaryObjectInfo.cs
- WebPartDisplayMode.cs
- NullableLongAverageAggregationOperator.cs