Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- EUCJPEncoding.cs
- FrameDimension.cs
- SafeNativeMethodsCLR.cs
- BevelBitmapEffect.cs
- Point4D.cs
- SqlSelectClauseBuilder.cs
- TemplateBuilder.cs
- SimpleType.cs
- AutoGeneratedField.cs
- TextBoxRenderer.cs
- NetWebProxyFinder.cs
- Binding.cs
- FormViewRow.cs
- UpDownEvent.cs
- WebPartDisplayModeCancelEventArgs.cs
- DataMemberFieldConverter.cs
- UnsafeNativeMethodsCLR.cs
- ClassValidator.cs
- OleDbConnectionInternal.cs
- _NegoStream.cs
- FileChangesMonitor.cs
- Activity.cs
- ImageSourceValueSerializer.cs
- SystemFonts.cs
- ImageField.cs
- OptimalTextSource.cs
- ApplicationSecurityManager.cs
- Attribute.cs
- PageHandlerFactory.cs
- CompilerGeneratedAttribute.cs
- SqlProviderManifest.cs
- ICollection.cs
- TargetFrameworkUtil.cs
- XmlSchemaNotation.cs
- wgx_render.cs
- QilFactory.cs
- SchemaCreator.cs
- DataContractJsonSerializer.cs
- Win32Exception.cs
- FixedTextContainer.cs
- IntegerValidatorAttribute.cs
- HttpException.cs
- Stackframe.cs
- XmlDocumentFieldSchema.cs
- UIElement.cs
- _ScatterGatherBuffers.cs
- PerformanceCounterPermission.cs
- XmlSchemaComplexContentExtension.cs
- XmlQualifiedName.cs
- PeerCollaboration.cs
- NamedPermissionSet.cs
- CodePrimitiveExpression.cs
- UserPreferenceChangingEventArgs.cs
- Predicate.cs
- BinaryFormatterWriter.cs
- ThousandthOfEmRealDoubles.cs
- UriSection.cs
- ListViewCommandEventArgs.cs
- TemplateApplicationHelper.cs
- MenuItem.cs
- StringArrayConverter.cs
- DataSourceXmlSubItemAttribute.cs
- IODescriptionAttribute.cs
- Thread.cs
- _NestedSingleAsyncResult.cs
- SymbolType.cs
- MetadataPropertyvalue.cs
- DragEvent.cs
- Helpers.cs
- baseaxisquery.cs
- DigitShape.cs
- WebPartConnectVerb.cs
- DbConnectionClosed.cs
- ButtonBaseAutomationPeer.cs
- FullTextBreakpoint.cs
- ImageClickEventArgs.cs
- ContainerActivationHelper.cs
- DbProviderManifest.cs
- ListBindableAttribute.cs
- ViewKeyConstraint.cs
- DropTarget.cs
- XmlSchemaExporter.cs
- Misc.cs
- GlyphRunDrawing.cs
- TTSEngineTypes.cs
- COAUTHINFO.cs
- OutputScope.cs
- Debug.cs
- ComponentDispatcher.cs
- Configuration.cs
- PolicyImporterElementCollection.cs
- ImmComposition.cs
- documentsequencetextpointer.cs
- SqlUDTStorage.cs
- PageParser.cs
- IconBitmapDecoder.cs
- AuthenticationConfig.cs
- HiddenFieldPageStatePersister.cs
- WmfPlaceableFileHeader.cs
- HttpListener.cs